我有一个rails4应用程序,我可以在其中为登录用户facebook
墙添加一个墙贴。现在我想要做的是阅读给定帖子的FB评论,然后在我的应用程序中显示。
我使用的是Rails 4和koala
宝石。以下是我的代码
Koala::Facebook::API.new(<user.oauth_token>).get_object("<facebook post id>")
但我一直在收到此错误。
{
"error": {
"message": "Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api",
"type": "GraphMethodException",
"code": 100
}
}
我在API中看不到任何不匹配,奇怪的是我记得我在大约3-4周后使用相同的代码而且如果我没记错的话那时候工作正常,
似乎它不是身份验证问题,因为,如果我使用
Koala::Facebook::API.new(<user.oauth_token>).get_object("me")
它运行正常。
答案 0 :(得分:0)
当您指定的用户访问令牌无法访问您请求的Facebook对象时,您将获得GraphMethodException
Unsupported get request. Please read the Graph API documentation at https://developers.facebook.com/docs/graph-api
。这是一个错误报告,其中包含更多细节: