Facebook Graph API 在网络浏览器中运行,而不是在 iOS SDK 中运行

发布于 2024-10-14 10:38:14 字数 685 浏览 2 评论 0原文

我在我的网络浏览器中尝试了这个:

https://graph.facebook.com/<facebookID>/statuses?access_token=<my access token>

我认为在 iOS SDK 中这相当于该查询:

NSString* graphPath = [NSString stringWithFormat:@"%@/statuses",facebookID];
[_facebook requestWithGraphPath:graphPath andDelegate:self];

但是它返回一个空的 JSON 数据...我在这里做错了什么吗? 其他查询对我来说似乎很好(例如 @"me"@"me/statuses"@"me/friends"

我认为 这也记录在 http://developers.facebook.com/docs/reference/api/< /a>

更多信息:

我有 read_stream 权限

I tried this in my web browser:

https://graph.facebook.com/<facebookID>/statuses?access_token=<my access token>

And I thought in iOS SDK this is the equivalent of that query:

NSString* graphPath = [NSString stringWithFormat:@"%@/statuses",facebookID];
[_facebook requestWithGraphPath:graphPath andDelegate:self];

But that returns an empty JSON data... Am I doing something wrong in here? Other queries seems fine to me (e.g. @"me", @"me/statuses", @"me/friends")

I think this is also documented in http://developers.facebook.com/docs/reference/api/

More info:

I have read_stream permission

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

逐鹿 2024-10-21 10:38:14

我想通了...我需要“friend_statuses”权限!我不知道! =)

I figured it out... I need "friend_statuses" permission! I did not know that! =)

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