Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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

share|improve this question
do you have read_streams permission? – LordT Jan 26 '11 at 9:06
Yes I do. In fact doing @"<friendID>/feed" works for me. – Enrico Susatyo Jan 26 '11 at 9:39

2 Answers

up vote 1 down vote accepted

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

share|improve this answer

Plz check the following blog post and example code regarding using Graph API on iOS.

http://www.capturetheconversation.com/technology/iphone-facebook-oauth2-graph-api

https://github.com/reallylongaddress/iPhone-Facebook-Graph-API

share|improve this answer
I'm using the official Facebook SDK, so in that SDK I don't have to write up the URL address myself. I was just wondering if you can do this using iOS SDK (because my whole app depends on that). – Enrico Susatyo Jan 26 '11 at 7:42

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.