We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm using multi-tenancy in my auth and everything is OK with Facebook and Google. But with Apple Sign-in this don't work.
In firebase console I can to configure Apple witch Sign-in method like the screenshot.
But my request return "The identity provider configuration is not found" when I add tenancy configuration in auth.
"The identity provider configuration is not found"
firebase.auth().tenantId = <MY_TENANT>
I noticed that Identity Provider cofiguration in Google Cloud Console dont have an Apple provider:
// Your web app's Firebase configuration const firebaseConfig = { apiKey: "apiKey", authDomain: "authDomain", databaseURL: "databaseURL", projectId: "projectId", storageBucket: "storageBucket", messagingSenderId: "messagingSenderId", appId: "appId", measurementId: "measurementId" }; // Initialize Firebase firebase.initializeApp(firebaseConfig); firebase.auth().tenantId = '<MY_TENANT>'; const token = '<APPLE SIGN IN GENERATED TOKEN>'; const provider = new firebase.auth.OAuthProvider('apple.com'); const fCredential = provider.credential(token); firebase.auth().signInWithCredential(fCredential) .then(function (r) { console.log('Response ', JSON.stringify(r)); }, function (e) { console.log('Error ', JSON.stringify(e)); });
NOTE: if remove tenantId will work, user will be authenticate in root
The text was updated successfully, but these errors were encountered:
b/163837097 For internal tracking.
Sorry, something went wrong.
Hi @scottcrossen, do you have any forecast for resolving this issue or workaround ?
It's been a long time so let me just ask you if Apple sign-in is available for multi tenancy?
No branches or pull requests
[REQUIRED] Describe your environment
[REQUIRED] Describe the problem
I'm using multi-tenancy in my auth and everything is OK with Facebook and Google. But with Apple Sign-in this don't work.
In firebase console I can to configure Apple witch Sign-in method like the screenshot.
But my request return
"The identity provider configuration is not found"
when I add tenancy configuration in auth.firebase.auth().tenantId = <MY_TENANT>
I noticed that Identity Provider cofiguration in Google Cloud Console dont have an Apple provider:
Relevant Code:
NOTE: if remove tenantId will work, user will be authenticate in root
The text was updated successfully, but these errors were encountered: