FB Graph API - 请求新闻源时 ID 无效:0。个人资料馈送,朋友们在工作
我正在使用 ASP.NET / c# 来获取 Facebook 用户的新闻提要。但从今天起,我对用户新闻提要的请求返回了 500 错误。 (内部服务器错误)
这是我想要做的: 当我将 jsonurl 复制粘贴到浏览器中时,
tring jsonUrl = graphUrl + "/" + id + "/home?access_token=" + token;
var json = new WebClient().DownloadString(jsonUrl);
我得到以下结果:
"error": {
"type": "IDInvalidException",
"message": "Invalid id: 0"
}
如果我将“home”更改为“feed”或“friends”,那么我确实得到了我想要的结果。这里有什么问题吗?
我希望有人能在这里帮助我。
I'm using ASP.NET / c# to get the news feed of a facebook user. But since today my request for the user's news feed is returning an 500 error. (Internal server error)
Here is what i'm trying to do:
s
tring jsonUrl = graphUrl + "/" + id + "/home?access_token=" + token;
var json = new WebClient().DownloadString(jsonUrl);
When i copy paste the jsonurl in my browser i get the following result:
"error": {
"type": "IDInvalidException",
"message": "Invalid id: 0"
}
If i change "home" to "feed" or "friends", then i do get the result i want. Is there something wrong here?
I hope someone can help me here.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将“read_stream”添加到您的权限列表中。
这之前可以在没有将该标志添加到您的权限会话中的情况下工作,但现在似乎他们需要指定这一点。
我在 iOS 应用程序中遇到了同样的问题,但现在又可以工作了
Add "read_stream" to the list of your permissions.
This was working before without adding that flag to your permissions session but now seems they require to specify that.
I was having the same issue in a iOS Application but now is working again