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'm attempting to post to a Facebook friend's wall using the Graph API. But instead of posting to my friend's wall it returns all his wall posts. I've attached the code I'm using below and from searching other similar questions it seems like my code is correct.

I've also already set the correct permissions (read_stream & publish_stream). Does anyone have any ideas?

NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:@"some test text",@"message",@"123456789",@"target_id",nil];


[self.facebook requestWithGraphPath:[NSString stringWithFormat:@"%@/feed",@"123456789"] andParams:params andDelegate:self];
share|improve this question

1 Answer

up vote 0 down vote accepted

you try like this ,

[self.facebook requestWithGraphPath:@"123456789/feed" andParams:params andHttpMethod:@"POST" andDelegate:self];

Because it seems, You are not adding method attribute

share|improve this answer
Thanks very much :) cant believe that I overlooked something so simple! – bennythemink Oct 6 '11 at 6:08

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.