【发布时间】:2013-10-05 11:26:39
【问题描述】:
我有一个问题..我想使用没有 OAuth 的 fb graph API 从 facebook 页面获取所有提要,但我有一个问题
https://graph.facebook.com/[page ID]/feed
i get the following response
{
"error": {
"type": "OAuthAccessTokenException",
"message": "An access token is required to request this resource."
}
}
当我检查另一个页面时,它得到了正确的响应
https://graph.facebook.com/[another page ID]/feed
{
"data": [
{
...
为什么它要求一个页面的访问令牌...而不是另一个页面?
编辑
我在 2 天前检查了第一页 Graph 调用,它正在 100% 工作
【问题讨论】:
标签: php facebook facebook-graph-api