This is a very simple react app to demonstrate how to implement Descope as an OIDC provider with Firebase.
Note: If you would like to implement Passkeys with Firebase, it is recommended to use pre-built flow
oidc-flow.json
file in the root of this directory. This can be downloaded and imported via the Descope Console.
In the Descope Console, make sure that your Flow Hosting URL is set to the following, if testing locally:
http://localhost:3000/oidc-login
This is where the Descope Flow component will be in this sample app. If you wish to modify the source code of this repo, you can modify the route in the App.js
file to whatever you'd like.
Next, you'll need to do is setup your Firebase Configuration to work with OIDC. Instructions can be found in this blog. Once that is complete you'll need to input your Firebase configuration settings into an .env
file.
# Descope Config
REACT_APP_DESCOPE_PROJECT_ID=<Descope Project ID>
# Firebase Config
REACT_APP_FIREBASE_API_KEY=<Firebase API Key>
REACT_APP_FIREBASE_AUTH_DOMAIN=<Firebase Auth Domain>
REACT_APP_FIREBASE_PROJECT_ID=<Firebase Project Id>
REACT_APP_FIREBASE_STORAGE_BUCKET=<Firebase Storage Bucket>
REACT_APP_FIREBASE_MESSAGING_SENDER_ID=<Firebase Messaging Sender ID>
REACT_APP_FIREBASE_APP_ID=<Firebase App ID>
REACT_APP_FIREBASE_MEASUREMENT_ID=<Firebase Measurement ID>
You can install all of the necessary packages by running yarn install
After these simple steps, you should be all set to test it out. This sample app uses FirebaseUI for the login screen, and showcases login with Descope via OIDC, and simple email/password.
Run the program using:
yarn start
If you have found a bug or if you have a feature request, please report them at this repository issues section.
This project is licensed under the MIT license.