Facebook Graph API 在网络浏览器中运行,而不是在 iOS SDK 中运行
我在我的网络浏览器中尝试了这个:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想通了...我需要“friend_statuses”权限!我不知道! =)
I figured it out... I need "friend_statuses" permission! I did not know that! =)