You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The URLs generated by firebase_admin.auth.generate_sign_in_with_email_link() include the relevant Android parameters (apn - Android package name, amv - Android minimum version) but the iOS bundle ID passed through ActionCodeSettings.ios_bundle_id is ignored and there is no ibi parameter in the resulting URL.
Steps to reproduce:
Initialize a firebase_admin.auth.ActionCodeSettings object assigning a ios_bundle_id value.
Generate an email link authentication URL by calling firebase_admin.auth.generate_sign_in_with_email_link() with the previously generated ActionCodeSettings.
The parameter named currently used by firebase-admin is iosBundleId (see
Describe your environment
Describe the problem
The URLs generated by
firebase_admin.auth.generate_sign_in_with_email_link()
include the relevant Android parameters (apn
- Android package name,amv
- Android minimum version) but the iOS bundle ID passed throughActionCodeSettings.ios_bundle_id
is ignored and there is noibi
parameter in the resulting URL.Steps to reproduce:
firebase_admin.auth.ActionCodeSettings
object assigning aios_bundle_id
value.firebase_admin.auth.generate_sign_in_with_email_link()
with the previously generated ActionCodeSettings.The parameter named currently used by
firebase-admin
isiosBundleId
(seefirebase-admin-python/firebase_admin/_user_mgt.py
Line 543 in aef52be
iOSBundleId
according to the documentation here: https://cloud.google.com/identity-platform/docs/reference/rest/v1/projects.accounts/sendOobCodeRelevant Code:
The text was updated successfully, but these errors were encountered: