Skip to main content

All Questions

0 votes
0 answers
127 views

Firebase Python Function called from Firebase Hosted App

I would like to call a firebase function written in Python from my firebase hosted app. I've followed the documentation here (https://firebase.google.com/docs/functions/callable?gen=2nd#...
John Robinson's user avatar
0 votes
1 answer
110 views

How to extract Sign In methods from AuthBlockingEvent dataclass firebase cloud function

I would like to extract the associated sign-in method used, like Google or email/password from the event. Given the Google Documentations here for Getting user and context information, some fields are ...
axelmukwena's user avatar
  • 1,079
0 votes
1 answer
84 views

Is there a python function for authentication user delete?

I'm trying to migrate my JavaScript Firebase function over to Python, which looks like this: exports.deleteUserDoc = functions.auth.user().onDelete(user => { // function body }); However, ...
okay's user avatar
  • 169
3 votes
1 answer
2k views

Error 'HTTPResponse' object has no attribute 'strict' when verifying id token with Firebase Admin authentication in python Cloud Function

I have a Cloud Function in python 3.9 that calls this code : firebase_admin.initialize_app() def check_token(token, app_check_token): """ :param app_check_token: :param ...
Tom3652's user avatar
  • 2,947
1 vote
1 answer
694 views

Use multiple domains for Firebase password reset

I haven't figured out a way to customize the authentication domain for a password reset email. This is important because I have built a custom password reset page, and need to first test it in ...
Alex's user avatar
  • 4,274
2 votes
1 answer
2k views

How to Initialize Firebase Admin SDK in Cloud Function (Python)

I found a similar question on here, but it was for JavaScript and I am using Python. I'm trying to use the Firebase-Admin SDK so I can verify Firebase Authentication id_tokens in my cloud function. In ...
Connor Williams's user avatar