Jon
Jon

Reputation: 11

Firebase authentication via Rest

When coding a c# windows app using the Rest API for firebase is it at all possible to use Firebases facebook authentication ? or are we limited to using only the Custom authentication approach.

Upvotes: 0

Views: 803

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 600071

When calling the REST API, you are responsible for passing a valid JSON Web Token in the auth parameter. It has no built-in authentication methods.

You can either get a token from one the supported Identity Providers or you can mint one yourself.

Upvotes: 1

Related Questions