Posts under category Meta & Facebook

Hello, right now the threads API always return an error for my app when I try to access any of the GET endpoints, for example
curl --location 'https://graph.threads.net/v1.0/me?access_token=MY_TOKEN
The error looks like this:
{
"error": {
"message": "An unknown error occurred",
"type": "THApiException",
"code": 1,
"fbtrace_id": "AFng8FXzbvPZTDsF7GIAhqx"
}
}

Hi,
We are receiving reports from our customers that some comments on posts are missing. We have investigated and found that these comments all have one thing in common: we did not receive a webhook for them. We have called the API to check and still see these comments being returned in the response. This issue is seriously affecting our customer service process. Please investigate this issue for us.
Missing Comment Id: 788187760189149_1236315917778588 Page: 363549471144008 PostId: 788187760189149

Hi. I'm trying to retrieve user's albums using me/albums but i'm getting the following errors on Graph Explorer:
{ "error": { "message": "(#10) Application does not have permission for this action", "type": "OAuthException", "code": 10, "fbtrace_id": "A1QZ2wQfn_IT-YaZp4P2Ziw" } }
user_photos permissions in grated in test mode , and me/photos?fields=picture&limit=10&type=uploaded retourn uploaded photos.
So it's not related to permission error. Looks like a bug.

After the latest depreciation of APP v13, the photos and Videos endpoints stopped returning data.
As per the documentation found here, https://developers.facebook.com/docs/graph-api/reference/v14.0/page/photos, we need the "pages_read_engagement" and the "pages_show_list" permissions to be able to read content.
The documentation also states that "By default reading from the photos edge returns the current profile picture for the Page as well as previous profile pictures. Use the optional type parameter with the value uploaded to get the photos that a Page has uploaded."
Below is a sample examples for the Photos Endpoint.
https://graph.facebook.com/v17.0/msalloumpage3/photos?access_token=&type=uploaded&fields=images,link&limit=1000
which returns the following response: { "data": [] }
If we use the same endpoint without the type=uploaded we do get the profile picture just like mentioned in the documentation.