I have a website and multiple android apps that all use firebase for authentication. The website and the apps all are associated with separate firebase projects with their own separate auth and database, the auth is done via firebase's email-password authentication.
I want to know if it is possible for the user to register in one app and having a duplicate account created for the website and vice versa.
So if a user registers in an app, they can login into the website without registering again.
I don't think firebase has a rest api for authentication.
EDIT: The answer posted here by Michael Bleigh will most likely work if i put it inside a rest api accessible by all my apps
Solved: I implemented the answer provided in the link above inside an api and it works,
Thanks