1
votes

I need to build a custom auth system with and i don't know what to choose between Firebase Auth and Google OAuth/OpenID.

I don't want my users to sign in through google accounts nor facebook nor twitter etc.

I want to use my own user database to authenticate my users.

So what is the best and more secure, reliable,scalable option to setup this ?

Thanks

1

1 Answers

0
votes

If you have an existing list of user credentials (e.g. Active Directory, LDAP or a database with user names and passwords) you can authenticate those users yourself and then tell Firebase about them with Custom Authentication tokens.

Using Google authentication makes no sense in that case, since the credentials you have are not for Google accounts.