User failed to login on supabase
Hello guys,
First of all, thanks a lot for this really helpful guide. Well, i manage to migrate the users to supabase but they failed to authenticate. How do i use this guide effectively? Thanks
Do you get an error message or can you provide any more information on the error you're getting? Have you tried resetting the user's password?
Having the same issue. After I imported the users into supabase and tried to login with one using the firebase email/password combination I'm getting an "invalid login credentials" error.
I saw that the password is never set in createUser() in import_users.ts (see this line). Can you extend the guide on how and when the passwords are copied?
Thank you
Same issue here
Yeah would really like to get some input on this. Failing authentication. I am adding the encrypted passwords in the line mentioned by @matthiasmyreha, but still no luck.
I am facing the same issue. After debugging, I noticed that the user firebaseAuth data stores the passwords in Hash encryption while Supabase only supports bcrypt. I tried to convert the passwords from JSON into bcrypt format using a couple of alternative but still didn't work.