【发布时间】:2018-04-23 16:47:57
【问题描述】:
我正在尝试使用此 URL 向 Facebook 的 Graph API 发出一个非常简单的请求:
https://graph.facebook.com/v2.12/1984193321812400?fields=overall_star_rating&access_token=205658113371329|gYdP-nDHNVENlwVxria21Uczgs8
我想从 Facebook 获得的只是我 Facebook 页面的overall_star_rating。然而,这就是我得到的:
{
"error": {
"message": "(#200) Access to this data is temporarily disabled for non-active apps or apps that have not recently accessed this data due to changes we are making to the Facebook Platform. https://developers.facebook.com/status/issues/206742313468873/",
"type": "OAuthException",
"code": 200,
"fbtrace_id": "A9XRfTkh3WR"
}
}
由于我对 Facebook Graph API 完全陌生:我提出的请求是正确的还是我在这里遗漏了一些真正重要的东西?
是的,我读过Facebook's issue report,但我觉得它不是很有帮助,因为我已经将我的应用程序设置为active,但它仍然无法正常工作。
感谢您在这件事上的任何帮助。
【问题讨论】:
标签: facebook facebook-graph-api