me.at.coding
me.at.coding

Reputation: 17766

Using firebase authentication in apps with backend in Azure?

I want to use Firebase Authentication in my mobile app, however I want to host the mobile backend (REST API and database) on Azure. In this case, how would I get the identity information from Firebase over to Azure, e.g. how would I check in my Azure backend if a token sent from my mobile app to the Azure backend is valid, get the name of the logged in user etc?

Upvotes: 0

Views: 680

Answers (1)

Doug Stevenson
Doug Stevenson

Reputation: 317758

You can use the Firebase Admin SDK to verify auth ID tokens sent from your app to your backend.

Upvotes: 1

Related Questions