嗨,我有这个从帖子中得到评论它的作品是有一年
$json = file_get_contents("http://graph.facebook.com/730350233684840/comments?limit=2500");
echo $json;
但现在我在facebook上有这个错误
{
"error": {
"message": "An access token is required to request this resource.",
"type": "OAuthException",
"code": 104
}
}
我如何从帖子中获得所有评论?
我使用了你的代码@luschn 我的真实APP ID和App Secret的请求
https://graph.facebook.com/730350233684840/comments?limit=2500&access_token=[APPIS|APPSECRT]
我有这个
{
"error": {
"message": "Invalid OAuth access token signature.",
"type": "OAuthException",
"code": 190
}
}
我使用chrome查看此错误
- 英语不是我的母语,对任何错误都很抱歉。
答案 0 :(得分:2)
例如:
$json = file_get_contents("http://graph.facebook.com/730350233684840/comments?limit=2500&access_token=[your-access-token]");
最基本的访问令牌是App Access Token,你可以创建一个这样的:
$appAccesstoken = $appId . '|' . $appSecret;
根据资源的不同,您可能需要用户或页面令牌。为此,您必须授权用户,它会变得更加复杂。
有关访问令牌的更多信息:
答案 1 :(得分:1)
您必须更改位置访问令牌并限制
https://graph.facebook.com/167416583311544_730350233684840/comments?access_token=appId|appSecret&limit=2500