Google Cloud Mobile Backend Starter User Authentication on Android

Can we implement user authentication on the Mobile Backend Starter? Instead of a google account, I want users to log in using a facebook account. Is it possible?

+6
source share
2 answers

To answer your question, yes, it is possible to implement other OAuth2 authorizations, such as Facebook, LinkedIn or Twitter.

Here's an example with code examples on how to do this.

In short, you must implement your own Authenticator and update @Api to enable a custom authenticator.

 @Api(name = "example", authenticators = { CustomAuthenticator.class }) 

For more information on user authenticators, see the Google documentation .

+1
source

I do not see any official support / docs / online lessons / experiments, but, unfortunately. Will be in search, since I also rolled into one instance of MBS. Well, there is an OPEN mode that allows unauthorized requests.

0
source

All Articles