I'm trying implement a Facebook dialog feed, but it doesn't show anything. I have followed :
Post to user's facebook wall with iPhone using latest FBConnect sdk
and:
http://developers.facebook.com/docs/reference/dialogs/feed/
Here is my code:
-(void) facebookPost{
NSString *kAppId = [[NSString alloc] initWithString:@"383032031757454"];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
kAppId, @"app_id",
@"http://developers.facebook.com/docs/reference/dialogs/", @"link",
@"http://fbrell.com/f8.jpg", @"picture",
@"Facebook Dialogs", @"name",
@"Reference Documentation", @"caption",
@"Using Dialogs to interact with users.", @"description",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
}
Many thanks for your help.
Froi