I'm using T3 Stack and next auth to authenticate with google, currently using mysql DB,
but while trying to logging in I'm getting
To confirm your identity, sign in with the same account you used originally.
How can I resolve this?
Thanks.
I'm using T3 Stack and next auth to authenticate with google, currently using mysql DB,
but while trying to logging in I'm getting
To confirm your identity, sign in with the same account you used originally.
How can I resolve this?
Thanks.
Copyright © 2021 Jogjafile Inc.
This happens if you already sign-up with one provider (say Github) and then you try to sign-up with another provider (maybe Google this time) that uses same email. NextAuth intentionally does not support auto linking of accounts because of security concerns.
From the official doc: https://next-auth.js.org/faq
If you want to get rid of this for testing purposes, you can simply remove the related user from the database (DO NOT DO THIS IN PRODUCTION THOUGH!).
Update:
As @KHB comment below; you may also use
allowDangerousEmailAccountLinking
setting to allow linking between identity providers.Docs: https://authjs.dev/guides/providers/custom-provider