-
Notifications
You must be signed in to change notification settings - Fork 129
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
Facebook on android is showing browser popup #185
Comments
I too am experiencing this today. |
same here |
in addition, facecebook will soon remove the ability to login from popups |
it is necessary to update the facebook sdk version to a new version in your applevel
|
I am using capacitor 3.0 and Google authentication works on browser and Android.
The facebook authentication works on browser but on Android when logging in with facebook it opens a browser popup where I need to login with facebook again instead of using my installed facebook app session.
My capacitor.config.json look like this
{
"appId": "com.xxx.yyy",
"appName": "AppName",
"bundledWebRuntime": false,
"npmClient": "npm",
"webDir": "www",
"plugins": {
"CapacitorFirebaseAuth": {
"providers": ["google.com", "apple.com", "facebook.com"],
"languageCode": "en",
"nativeAuth": true,
"properties": {
},
"permissions": {
"google": ["email", "profile"],
"facebook": ["email"],
"apple": ["fullName", "email"]
}
}
}
}
Is this config correct ? Can someone help me ?
Thanks!
The text was updated successfully, but these errors were encountered: