Facebook Graph API works in web browser, not in iOS SDK -
i tried in web browser:
https://graph.facebook.com/<facebookid>/statuses?access_token=<my access token> and thought in ios sdk equivalent of query:
nsstring* graphpath = [nsstring stringwithformat:@"%@/statuses",facebookid]; [_facebook requestwithgraphpath:graphpath anddelegate:self]; but returns empty json data... doing wrong in here? other queries seems fine me (e.g. @"me", @"me/statuses", @"me/friends")
i think documented in http://developers.facebook.com/docs/reference/api/
more info:
i have read_stream permission
i figured out... need "friend_statuses" permission! did not know that! =)
Comments
Post a Comment