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 am trying to implement Facebook in my iPhone app and I have successfully authorized the app in the application delegate as shown in Facebook's guide. Now I can easily use Facebook around my application using the code below.

AppDelegate *appDelegate = (AppDelegate *)[[UIApplication sharedApplication] delegate];
facebook = [appDelegate facebook];

I would like to get the user's News Feed but when doing so using the following code I get an error.

[facebook requestWithGraphPath:@"me/home" andDelegate:self];

The error is:

The operation couldn’t be completed. (facebookErrDomain error 10000.)

{
    error = {
        message = "An unknown error has occurred.";
        type = OAuthException;
    };
}

I have read that the News Feed should be retrieved using me/home. The session seems to be active as I have no problem getting the user's wall posts using me/feed.

Does anyone know why I can't get the user's news feed? I have added the read_stream permission and when I log into my Facebook account I see that my application is registered as being able to read my news feed.

This app can: Access posts in my News Feed

share|improve this question

1 Answer

up vote 0 down vote accepted

This post on Facebooks Developer Forums indicates that this is a problem on Facebook's part.

share|improve this answer

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.