Facebook 评论数据为空
我有一个 Facebook Graph API 访问令牌,我在其中请求了 read_stream 和 user_status 访问权限。当我尝试为自己获取评论数据时:
https://graph.facebook.com/me/comments?access_token=[MyToken]
我得到了一块空白的 Json:
{
"data": [
]
}
我的流上确实有最近的评论。他们不应该出现吗?
I've got a Facebook Graph API access token in which I've requested read_stream and user_status access. When I try to get comment data for myself:
https://graph.facebook.com/me/comments?access_token=[MyToken]
I get a blank piece of Json back:
{
"data": [
]
}
I do have recent comments on my stream. Shouldn't they show up?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为您正在寻找的是:https://graph.facebook.com/me/feed?access_token=[MyToken]
-michael
I think what you are looking for is: https://graph.facebook.com/me/feed?access_token=[MyToken]
-michael