nextauthjs / next-auth

Authentication for the Web.
https://authjs.dev
ISC License
23.79k stars 3.27k forks source link

Resend email provider does not create an entry in Account table #10662

Open gnasamx opened 3 months ago

gnasamx commented 3 months ago

Provider type

Email

Environment

Reproduction URL

https://github.com/gnasamx/my-app/blob/main/lib/auth.ts

Describe the issue

Doc says magic link will also add an entry in Account table. Link: https://authjs.dev/concepts/database-models#account

But Account has some problem. I'm using Resend provider. It's minimal setup (repo link is below). But I don't see a user entry in Account table. I can confirm that the User, Session, VerificationToken table entries are working correctly.

Screenshot 2024-04-20 at 10 49 28 PM

How to reproduce

Expected behavior

An entry (with type as "email" and provider as "Resend") should be added on successfully verifying the email sign in invitation link.

tarun7singh commented 3 months ago

After seeing your issue i checked my mongodb cluster and this is correct, All users that came through resend are not being added to the account collection.

mickasmt commented 3 months ago

@gnasamx @tarun7singh If you only use email with Resend then the recording will only be made in the User table Account table is only for other providers like Google, Github, etc. If you sign in by email first and then use a Google account with the same email address, you will see a record in Account and this will automatically be linked to the one in User by user ID. This is what I understood with the documentation and after doing the test locally. Is this right?

gnasamx commented 3 months ago

No. What you are talking is related to account linking (with same email) if I'm not wrong. Also I'm pretty sure, this was working a couple a days ago. I mean I have seen an entry in Account table with type as an email and provider as a Resend after successfully verification.

Also it is mentioned the docs that magic link will create an entry in Account table. I have attached a doc link in the first comment.

If I understood it correctly then this is part of code that runs on verify callback back for email type and related to account: https://github.com/nextauthjs/next-auth/blob/662e84f9a65eb0e74dc07e924aa15dfb37631f85/packages/core/src/lib/actions/callback/index.ts#L224

Let's see if someone knows/facing this issue.

JesperSvensson00 commented 3 weeks ago

I am facing the same issue. Did you find a find a fix for this or identified the cause?

gnasamx commented 3 weeks ago

Sorry but no, I did not identified the cause. I decided not to use the magic link for a time being.