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/

更多信息:

我有 read_stream 权限

4

1 回答 1

1

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

于 2011-02-02T03:58:35.117 回答