Posts under category Meta & Facebook

We are trying to get an list of Instagram accounts associated to a Facebook business account. The endpoint we are trying to call is: https://graph.facebook.com/v20.0/<business_id>/owned_instagram_accounts?access_token=<access_token>

When using an account which has a developer role in the app the call returns a 200 as expected. But when we use an external account we get the following error:

"error": {     "message": "Unsupported get request. Object with ID '951060758639721' does not exist, cannot be loaded due to missing permissions, or does not support this operation. Please read the Graph API documentation at https:\/\/developers.facebook.com\/docs\/graph-api",     "type": "GraphMethodException",     "code": 100,     "error_subcode": 33,     "fbtrace_id": "APTgzDN8PxkeXGu_IZ7HS3q" } 

These are the permissions we have granted and which we all have advanced access from facebook: email, catalog_management, pages_show_list, ads_management, business_management, instagram_basic, pages_read_engagement, public_profile.

Our app is also in live mode.

Does anyone know what we are doing wrong or what we are missing?

We tried everything we know of, tried multiple methods. have requested access to multiple permissions but nothing seems te be working

ERROR: The content you requested cannot be displayed right now. It may be temporarily unavailable, the link you clicked on may have expired, or you may not have permission to view this page.
The support page not working, displays an empty page. https://developers.facebook.com/docs/plugins/comments/
Please help me with this issue, we need to moderate the comments on our website.

I'm trying to create a simple ChatBot for WhatsApp and have hit a brick wall adding a phone number to the account. I've been Googling and trying various things for the last week and have gotten no further.

I have set up an App in my Facebook Developer account with WhatsApp; In API Setup I've added a new number (paid number that's guaranteed to work with WhatsApp, not one of the freebie ones), verified it by SMS and got an phone ID for that new number. However, when I try and 'generate access token', I get the following error:

If I try to register or verify the number via API, using either the /PHONE_ID/register or /PHONE_ID/request_code endpoints, I get the same error message in the terminal saying the PHONE_ID does not exist, yet if do a check of /BUSINESS_ID/phone_numbers it returns a response with that very same PHONE_ID, eg:

{    "data": [       {          "verified_name": "Business Name",          "code_verification_status": "VERIFIED",          "display_phone_number": "+44 XXXX XXXXX",          "quality_rating": "UNKNOWN",          "platform_type": "NOT_APPLICABLE",          "throughput": {             "level": "NOT_APPLICABLE"          },          "webhook_configuration": {             "application": "https://foo.bar/mywebhook.php"          },          "id": "PHONE_ID"       }    ],    "paging": {       "cursors": {          "before": "XXXXXX",          "after": "XXXXX"       }    } } 

I have made sure the business itself is verified and has a payment source. The phone number name has been approved. I cannot find any unmissed alerts in WhatsApp manager, and yet the number remains 'pending'. In the API config, the drop-down shows the number, but is unselectable as it's saying it's not registered. Oh my days...

Any help would be much appreciated. I'm tearing my hair out over this one.