I have created a Moodle portal. Is it possible to have FIREBASE authentication (for Sign-Up and Sign-In) for MOODLE?
Asked
Active
Viewed 352 times
1 Answers
0
There is no default provider for Moodle sign-in for Firebase, but you can create your own custom provider that mints Firebase tokens based on your verified Moodle credentials.
The flow for this is:
- You collect the user's credentials and pass these to your server.
- You call the Moodle API to sign the user in.
- You then mint a Firebase token from the verified information about this user.
- You pass the token back to the client, and sign in to Firebase there.

Frank van Puffelen
- 565,676
- 79
- 828
- 807