Subcode 33 API

I have an application that gets leadsfrom facebook after a webhook request when it leads to filling out forms: some pages throw this error:

{
    "error": {
        "message": "Unsupported get request. Object with ID '233332620530416' 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": "HIItB4mggfk"
    },
    "__debug__": {}
}

I cannot find the error subcode description in the Facebooks API docs.

+10
source share
5 answers

Check the access token at https://developers.facebook.com/tools/debug/accesstoken

Your application may not have the required authority.

+1
source

Related Problem: fooobar.com/questions/1687931 / ...

Here is the link of the portal with a Facebook error to a similar problem: https://developers.facebook.com/bugs/316526372199563/

Its essence is as follows:

Facebook/Messenger, , API. API, , : https://developers.facebook.com/docs/graph-api/changelog"

+1

, , . json ( ). , , . json, , .

0
source

I got this error when adding access_token to the message body, it worked when adding parameters to url.
Result of Success Using a Postman

enter image description here

Failed to get result using email manager

enter image description here

0
source

I found an answer recently

Follow these steps using the postman

https://graph.facebook.com/page-name/feed

  headers: Content Type: application / x-www-form-urlencoded

Body: message: "your message"
link: "your web link" access_token: "your access token"

I hope this works fine

0
source

Source: https://habr.com/ru/post/1687913/


All Articles