-
Notifications
You must be signed in to change notification settings - Fork 892
New issue
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
Firebase auth with Facebook does not work on Android #8435
Comments
Hi @jacquesgiraudel, thank you for reaching out to us. I was able to replicate the issue. Let me check with our Auth team what we can do for this issue or bring someone here that can provide more context about it. I’ll update this thread if I have any information to share. |
Hi, any updates about it. I have same problem with facebook login on both ios and android. |
@jbalidiong Same here.. This seems quite breaking and might require some urgency? It has already been reported since at least January: firebase/firebaseui-web#1068 (This thread refers to a topic: #7958). |
Hi @jacquesgiraudel, it seems your authDomain doesn't match the domain you are using (upreality.store).
We're investigating why this is occurring only on Android devices and Facebook provider. |
Hi @NhienLam, Unfortunately, I am not using Firebase hosting, so this is not an option for me. https://firebase.google.com/docs/auth/web/redirect-best-practices |
Operating System
Android 13
Browser Version
Chrome 127.0.6533.103
Firebase SDK Version
10.13.0
Firebase SDK Product:
Auth
Describe your project's tooling
React app
Describe the problem
I am trying to login with signInWithPopup (which works on desktop and ios devices) and I get a "auth/popup-closed-by-user" without any additional details.
const auth = getAuth();
const provider = new FacebookAuthProvider();
provider.addScope('email');
provider.setCustomParameters({
'display': 'popup'
});
signInWithPopup(auth, provider)
. then(...)
.catch(error){}
Steps and code to reproduce issue
On an Android device:
The text was updated successfully, but these errors were encountered: