我正在尝试编写一个脚本,该脚本将从我的Facebook群组的一个源中读取。
目前Facebook使用仪表板的实时订阅似乎仅适用于“用户”,“页面”和“付款”对象。 (https://developers.facebook.com/docs/reference/api/realtime/#subscribingviaappdash)
此外,当我尝试使用Graph API Explorer中的GET请求获取当前订阅时
https://graph.facebook.com/APP_ID/subscriptions?access_token=ACCESS_TOKEN
即使我在请求中使用应用程序的访问令牌,我也会收到以下错误:
{
"error": {
"message": "(#15) This method must be called with an app access_token.",
"type": "OAuthException",
"code": 15
}
}
我该如何处理?