I want to post something in the users friends wall.
I use this to post into the user wall
SBJSON *jsonWriter = [[SBJSON new] autorelease];
NSDi
@mAc
You have to authorize facebook first. Then you implement 'FBRequestDelegate' methods to your class. Then make a request with graph API as given below
[facebook requestWithGraphPath:@"/me/friends" andDelegate:self];
Once your request succeeded, api will call the delegate method 'requestDdidLoad',
-(void)request:(FBRequest *)request didLoad:(id)result {
NSLog(@"Result: %@", result);
}
Form the result you will get the frieds page ID