Firebase Integration with Django REST

5,467

The Firebase docs explain this well, if you check out the following URL: https://firebase.google.com/docs/auth/admin/verify-id-tokens . I started a Django app to handle this myself which you can download from PyPi: drf-firebase-auth, which you can either use yourself or fork the repo and adjust as suitable to your needs.

Share:
5,467
PJQuakJag
Author by

PJQuakJag

Updated on December 07, 2022

Comments

  • PJQuakJag
    PJQuakJag 11 months

    I am building a mobile application on Flutter and have integrated a Firebase login to the application. I also have a Python Django REST API that is called within the app. I am hoping to integrate Firebase with the REST API so that the users in Firebase can become authenticated users of the API (and so I can create tokens and tokenize the API endpoint).

    Does anyone know of a method I can use for this? Novice programmer and new to Firebase so let me know if there is a better way to do this! Appreciate the help.