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
Hey, I have a question. After updating my app to android API 35 and Capacitor 7, I have a message from Facebook that "It looks like this app isn't available. This app needs at least one supported permission".
I have added fields 'email' and 'public_profile' permissions to the list of permissions but it does not work.
List of the permissions:
const FACEBOOK_PERMISSIONS = [
'email',
'pages_manage_posts',
'pages_manage_engagement',
'pages_manage_ads',
'pages_manage_metadata',
'pages_read_engagement',
'pages_read_user_content',
'instagram_basic',
'instagram_content_publish',
'business_management',
'public_profile'
];
How I call Facebooklogin:
const options: SignInWithOAuthOptions = {
scopes: FACEBOOK_PERMISSIONS
};
await FirebaseAuthentication.signInWithFacebook(options);
Does it relate to Facebook update "Facebook Login for Business"? How should I fix it?
On my previous app version everything works fine. (app is using Capacitor 6 and android API 34)
And one more question - is there a way to login with "config_id"?
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hey, I have a question. After updating my app to android API 35 and Capacitor 7, I have a message from Facebook that "It looks like this app isn't available. This app needs at least one supported permission".

I have added fields 'email' and 'public_profile' permissions to the list of permissions but it does not work.
List of the permissions:
const FACEBOOK_PERMISSIONS = [
'email',
'pages_manage_posts',
'pages_manage_engagement',
'pages_manage_ads',
'pages_manage_metadata',
'pages_read_engagement',
'pages_read_user_content',
'instagram_basic',
'instagram_content_publish',
'business_management',
'public_profile'
];
How I call Facebooklogin:
const options: SignInWithOAuthOptions = {
scopes: FACEBOOK_PERMISSIONS
};
await FirebaseAuthentication.signInWithFacebook(options);
Does it relate to Facebook update "Facebook Login for Business"? How should I fix it?
On my previous app version everything works fine. (app is using Capacitor 6 and android API 34)
And one more question - is there a way to login with "config_id"?
Beta Was this translation helpful? Give feedback.
All reactions