Posts under category Meta & Facebook

I'm using this package to send messages on WhatsApp Business, but when I try to use it i get this error:

{"error":{"message":"Unsupported post request. Object with ID 'messages' 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":"AZy2DQf7fRL003f1RJcY8Kf"}}

I tried changing the token many times and also switching phone numbers. What can I do?

Here's what i did:

Added this to config/services.php:

 'whatsapp' => [             'from-phone-number-id' => env('WHATSAPP_FROM_PHONE_NUMBER_ID'),             'token' => env('WHATSAPP_TOKEN'),         ], 

Added application token and phone number id inside .env:

WHATSAPP_FROM_PHONE_NUMBER_ID=XXXXXX WHATSAPP_TOKEN=XXXXXX 

And then I created a notification class in Laravel like the instructions said and used the notification facade to send the message.

I just tried using the notify method of the Notifiable Trait like this:

Route::get('/wa', function () {     $user = User::find(4);     $user->notify(new AppuntamentiPazienti());     return view('homepage'); }); 

but i got the same error.

Starting yesterday we are seeing several instagram conversations returning a non valid timestamp:
"updated_time": "56454-04-04T18:29:15+0000"
This is the endpoint we are currently using: me/conversations?fields=id,updated_time&platform=instagram
It does not seem to be a widespread issue but the amount of affected accounts is quite important right now. Does anybody know if that is something already reported to Meta?
Thanks in advance!

We have always used this "IMPRESSION" parameter to retrieve data for Instagram posts, and it has worked successfully in the past, but today it suddenly returned an error.
Is it deprecated from the API? And is there any new data point that can replace it? Many thanks!

Problem
I am trying to fetch Insights data along with media data using the Media API. However, when the response includes media with media_product_type: 'REELS', the error occurs.
Is this a bug? If not, could you please advise on how to handle this issue?
Endpoint
GET /{ig-user-id}/media v18.0 https://developers.facebook.com/docs/instagram-platform/instagram-graph-api/reference/ig-user/media
Request Sample
https://graph.facebook.com/v18.0/{ig-user-id}/media?fields=id,media_type,media_product_type,timestamp,like_count,comments_count,media_url,thumbnail_url,children%7Bmedia_url%7D,caption,permalink,insights.metric(impressions,profile_visits,follows,reach,saved)&limit=25&access_token={access_token}
Response
{
"error": {
"message": "(#100) The Media Insights API does not support the impressions, profile_visits, follows metric for this media product type.",
"type": "OAuthException",
"code": 100,
"fbtrace_id": "A9hTiVk7AgYkpTBap84AC8c"
}
}