question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Allow signin without Email Verification

See original GitHub issue

Hello Team. I have been using supabase for a week now and it is wonderful. Thank you for your hard work 🙇

I have a question. Please provide me with your suggestions on this.

I need to allow users to sign in even without email verification. I found Enable email confirmation setting and disable that option. But still I get Email Not Confirmed message during signin.

image

Is this intended? Or am I missing something?

Issue Analytics

  • State:closed
  • Created 2 years ago
  • Reactions:8
  • Comments:19 (8 by maintainers)

github_iconTop GitHub Comments

8reactions
rommyarbcommented, Jul 14, 2022

I’ve also experienced this when creating a user from the server using supabase.auth.api.createUser(). You can solve it by passing email_confirm attribute.

const createNewUser = await supabase.auth.api.createUser({
  email: 'me@mydomain.com',
  password: '123456',
  email_confirm: true,
})
3reactions
JamesDHWcommented, Nov 7, 2022

The docs here say you can control this as a setting in your dashboard, however the link to the location of the switch seems to be outdated.

I found the switch to control whether email verification is required is here, which changes the setting for all users.

Read more comments on GitHub >

github_iconTop Results From Across the Web

Cognito without Verifying Email - Stack Overflow
I'm using Cognito for user registration and authentication. I would like users to be able to register and login ...
Read more >
Sign in with your phone instead of a password - Google Support
When you sign in to your Google Account, enter your email address or phone number. Tap Next. You'll get a reminder to check...
Read more >
Signing up and confirming user accounts - Amazon Cognito
A verification code that Amazon Cognito sends to that email address or phone number. If 24 hours have passed and your user's code...
Read more >
How to Login to Google Account without Verification Code
Open the Google Account Settings > Security > 2-Step Verification and click on the Turn off button. Enter Google account password and click ......
Read more >
Allow first login after registration without email verification
Hi @metalsunny,. Without email verification, the user can log in but he can not access his my account area. If you check the...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found