Firebase Authentication through Rest

When coding a C # windows application using the Rest API for firebase, can Facebook Firebases authentication be used at all? or we are limited to using only the user authentication method.

0
source share
1 answer

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

You can either get a token from one of the supported identity providers, or you can tag it yourself.

+1
source

Source: https://habr.com/ru/post/1649367/


All Articles