Next auth oauth sign up error
Unanswered
Eastern Towhee posted this in #help-forum
Eastern TowheeOP
I am trying to implement google sign in with, next auth
and it worked fine for me till I used Prisma but I found Prisma
to be too slow and switched to Keysley (query builder) and
used Prisma for migration only, I am using mysql database
(Planet scale) but now my problem is when I do google login the process is fine from the Google side I can even see user detail on the console but it doesn't store them on my database (Account's table ) for some weird reason, Credential signup works fine:
Some things to know:
1. After moving from Prisma I changed the users' table Id and Accounts table Id as primary key autoincrement because with string auto-generated it was working on Prisma. Still, I thought now I moved to query builder only it can't generate the string itself that's why it was not working but the problem still persists.
HAVE ANYONE TRIED IT WITHOUT PRIMSA WOULD LOVE TO KNOW THEIR EXPERIENCE
and it worked fine for me till I used Prisma but I found Prisma
to be too slow and switched to Keysley (query builder) and
used Prisma for migration only, I am using mysql database
(Planet scale) but now my problem is when I do google login the process is fine from the Google side I can even see user detail on the console but it doesn't store them on my database (Account's table ) for some weird reason, Credential signup works fine:
Some things to know:
1. After moving from Prisma I changed the users' table Id and Accounts table Id as primary key autoincrement because with string auto-generated it was working on Prisma. Still, I thought now I moved to query builder only it can't generate the string itself that's why it was not working but the problem still persists.
HAVE ANYONE TRIED IT WITHOUT PRIMSA WOULD LOVE TO KNOW THEIR EXPERIENCE