All Questions
6 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#...
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 ...
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, ...
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 ...
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 ...
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 ...