Replies: 2 comments 6 replies
-
We support a whole host of login providers, including OAuth, Google, and more. Feel free to go over the code here to understand it: https://github.com/GodotNuts/GodotFirebase/blob/main/addons/godot-firebase/auth/auth.gd It is also documented in our wiki here: https://github.com/GodotNuts/GodotFirebase/wiki/Authentication-and-User-Management Edit: Okay, I'm correcting myself here. It seems we don't support it directly, though one of our team has offered to implement it soon. I'll create an issue. Thanks for pointing it out! |
Beta Was this translation helpful? Give feedback.
-
Hi @mars3142 , I'm working on this feature and I've implemented the login via a custom token , even though it is not possible to make it work out of the box as the example you posted. Here's the reason why: However, I'll propose a few workarounds for this, and the second one of them is already working without any update required:
and based on the response (it contains a
Of course this will work if you enable email/password combination only, but this will basically work out of the box since there is no check from Firebase about the authenticity of an email. Let me know what you think about it, if you have any suggestion or more information to share about a possible solution. |
Beta Was this translation helpful? Give feedback.
-
Firebase offers the login with custom token method. I want to use it, because I don't want to use email/password for login. The Firebase team offers a simple solution for that with custom tokens. But I can't use it with your plugin. Correct?
It would be really nice to have such an option. Should I create a Feature Request for that?
PS: For more information about username/password login with Firebase see https://github.com/firebase/functions-samples/tree/master/username-password-auth
Beta Was this translation helpful? Give feedback.
All reactions