FB Graph API - 请求新闻源时 ID 无效:0。个人资料馈送,朋友们在工作

发布于 2024-11-05 09:56:44 字数 503 浏览 0 评论 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

找回味觉 2024-11-12 09:56:44

将“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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文