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 working with the Google Ads API and trying to run the GetCampaigns.php example from the official repository. The authentication works fine, but when I try to execute the searchStream() method to retrieve campaigns, I get warnings about gRPC channels being maxed out, and the process stops. This is the file

The error log shows the following:

 WARNING: All log messages before absl::InitializeLog() is called are written to STDERR I0000 00:00:1727872579.980136   22500 channel.c:277] [Warning] Target upper bound: 1. Current size: 1. I0000 00:00:1727872579.980178   22500 channel.c:280] [Warning] Target googleads.googleapis.com:443 will not be persisted. 

I tried debugging the code, and the execution stops at this line:

$stream = $googleAdsServiceClient->searchStream(     SearchGoogleAdsStreamRequest::build($customerId, $query) ); 

I also tried increasing the number of gRPC channels by setting the following environment variable, but it didn't solve the issue:

putenv('GRPC_DEFAULT_MAX_CHANNELS=10');

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.