Can we implement custom authentication in Mobile Backend Starter? Instead of google account, I want users to login using facebook account. Is this possible?
To answer your question, yes it's possible to implement other OAuth2 authorizations like Facebook, LinkedIn or Twitter.
Here's an aswer with code examples how to achieve this.
In short you have to implement your own Authenticator
and update @Api
annotation to take the custom authenticator into account.
@Api(name = "example", authenticators = { CustomAuthenticator.class })
More about custom authenticators can be found in Google documentation.
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With