为了澄清前面的答案......考拉的文档指出 get_comments_for_urls 方法fetches the comments from fb:comments widgets for a given set of URLs (array or comma-separated string)
。因此,当页面上有一个实际的 Facebook 评论框时,此调用有效(此处描述:https ://developers.facebook.com/docs/reference/plugins/comments/ )。
这是一个带有真实 URL 的工作示例:
oauth = Koala::Facebook::OAuth.new Facebook::APP_ID, Facebook::SECRET
app_access_token = oauth.get_app_access_token
graph = Koala::Facebook::API.new app_access_token
urls = ['http://www.ruhanirabin.com/easy-steps-to-facebook-connect-comment-box-how-to/']
comments = graph.get_comments_for_urls(urls)
请注意,应用访问令牌与您在 Facebook 开发者网站上的应用配置中指定的应用 ID 和密码不同。