本文介绍了Facebook API错误子代码33的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有一个应用程序,在潜在客户填写表单后,经过webhook请求后,从Facebook获取了潜在客户:某些页面抛出了此错误:

I have an app that gets leads from facebook after webhook request when leads fill out forms: Some pages are throwing 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__": {}
}

我在Facebook API文档中找不到错误子代码描述。

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

推荐答案

您应用可能缺少所需的权限范围。

Your app might be missing a needed permission scope.

这篇关于Facebook API错误子代码33的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-06 21:21