Posts under category Facebook Graph API

I am trying to implement Facebook login for my application. It was working well in development mode, but when I try to switch to live mode I see this message:

Feature Unavailable

Facebook Login is currently unavailable for this app, since we are updating additional details for this app. Please try again later.

here is the exact error I get

I do not have any required actions in developer console.

I have searched for an answer, I have already set advanced access to email and public profile, and I got advanced access to other permissions as well. Business verification is complete and I have verified my Business as a tech provider as well.

Here is the code that handles the Facebook login (I am using Django framework):

def facebook_login(request):     facebook_auth_url = "https://www.facebook.com/v21.0/dialog/oauth"     if "test" in request.get_full_path():        redirect_uri = request.build_absolute_uri('/test/home/facebook_login/facebook_callback/')        redirect_uri = "http://localhost:8000/home/facebook_login/facebook_callback/"     else:         redirect_uri = request.build_absolute_uri('/home/facebook_login/facebook_callback/')     scopes = "pages_show_list,business_management,read_insights,ads_read,pages_read_engagement,ads_management"          state = generate_state()     request.session['oauth_state'] = state          params = {         'client_id': settings.META_APP_ID,         'redirect_uri': redirect_uri,         'scope': scopes,         'response_type': 'code',         'state': state,     }     auth_url = f"{facebook_auth_url}?{urlencode(params)}"     return JsonResponse({'authorization_url': auth_url}) def facebook_callback(request):     error = request.GET.get('error')     if error == 'access_denied':         prefix = 'test/' if os.getenv('PROD') == 'blue' else ''         cancel_redirect_url = (             "http://localhost/" + prefix + "#/home/connections"              if os.getenv('DEVELOPMENT') == 'True'              else "https://platform.webalyze.ai/" + prefix + "#/home/connections"         )         return redirect(cancel_redirect_url)          state = request.GET.get('state')     if state != request.session.pop('oauth_state', None):         return JsonResponse({'error': 'Invalid state parameter'}, status=400)     code = request.GET.get('code')     if not code:         return JsonResponse({'error': 'No code provided'}, status=400)     token_exchange_url = "https://graph.facebook.com/v21.0/oauth/access_token"     redirect_uri = request.build_absolute_uri(request.path)     print('REDIRECT (facebook_callback):', redirect_uri)     params = {         'client_id': settings.META_APP_ID,         'redirect_uri': redirect_uri,         'client_secret': settings.META_APP_SECRET,         'code': code,     }     response = requests.get(token_exchange_url, params=params)     data = response.json()     if 'access_token' in data:         access_token = data['access_token']         saveMetaTokenToDatabase(request.user, access_token)         prefix = 'test/' if os.getenv('PROD') == 'blue' else ''         if os.getenv('DEVELOPMENT') == 'True':             return redirect("http://localhost/" + prefix + "#/home/connections")         else:             return redirect("https://platform.webalyze.ai/" + prefix +"#/home/connections")     else:         return JsonResponse({'error': 'Failed to obtain access token'}, status=400) 

What am I missing so I can do this in live mode?

I'm trying to setup webhook for Facebook webhook, I got my php script to run just fine with the test feed. The app is subscribed to the "Feed", as I want to get if a post is made on our public page. But eventho my app now is Live, I'm still not recieving any post requests other than the test one, when I test it.

I read the documentation, and it seems like its cause it need "pages_read_engagement" permision via App Review.

But here is my problem, how do I request for this permision, as a app review want you to have a Facebook login on page and such, but when its just a webhook that recieves, translates and put into our database to be displayed on website, it realy does not use login an such.

Any one know how to do this, I've been stuck on this for some time now.

I am able to fetch reviews and comments for review posts, as well as reply to comments, add comments, and update comments on review posts. However, I am unable to delete comments that were posted by me.
The access token I am using includes the following scopes:
pages_show_list business_management pages_read_engagement pages_read_user_content pages_manage_posts pages_manage_engagement
When attempting to delete a review post comment using the Graph API, I encounter the following error:
{ "error": { "message": "(#200) Permissions error", "type": "OAuthException", "code": 200, "fbtrace_id": "AO6pApG9lvP7-Zmd7rslPAm" } } Is there any way to delete review post comments using the Facebook Graph API?"

am working with the Instagram Graph API to retrieve Instagram followers count for accounts linked to Facebook Pages. I am using the following scopes: instagram_basic and pages_show_list.

While the API works for some Facebook accounts and returns the Instagram followers count correctly, it does not work for other accounts, even though those accounts have Instagram Business or Creator accounts linked to their Facebook Pages.

Here’s an outline of my setup:

I use the endpoint GET /{page_id}?fields=instagram_business_account to fetch the Instagram Business Account ID. Once I have the Instagram Business Account ID, I query GET /{instagram_account_id}?fields=followers_count to get the followers count. For some Facebook Pages, the instagram_business_account field is returned as null, even though the Instagram accounts are properly linked to the Facebook Pages.

I have ensured:

The access token has the required permissions (instagram_basic, pages_show_list). The user token is generated correctly, and the app is authorized for all required permissions. The Instagram accounts in question are Business or Creator accounts and linked correctly to the Facebook Pages.

Has anyone faced a similar issue? Are there additional permissions or configurations needed to consistently fetch the Instagram Business Account ID and followers count?

Any guidance or insights would be appreciated!

Thank you.