sungyong
sungyong

Reputation: 2499

Firebase Auth REST API

From firebase documents they support iOS, Android, Web and C++.

Do they support REST api?

My aim is multi platform app using Firebase Auth. So if they REST API for firebase auth, I want to make wrapper class for REST API.

I already found wrapper library for firebase DB, but not Auth.

Upvotes: 0

Views: 507

Answers (1)

Frank van Puffelen
Frank van Puffelen

Reputation: 599876

There is a REST API for Firebase Authentication, which is documented here.

It contains sections on sign-up, sign-in, updating user profiles, and all the other actions that the client-side SDKs also support.

Upvotes: 1

Related Questions