我有一个问题..我想使用没有 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%