objective c - Issue with Facebook feed dialog -


i'm trying implement facebook dialog feed, doesn't show anything. have followed :

post user's facebook wall iphone using latest fbconnect sdk

and:

http://developers.facebook.com/docs/reference/dialogs/feed/

here 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 interact users.", @"description",                                    nil];      [facebook dialog:@"feed" andparams:params anddelegate:self];  } 

many help.

froi

i think u have set accesstoken below

[params setobject:facebook.accesstoken forkey:@"access_token"];  [facebook dialog:@"feed" andparams:params anddelegate:self]; 

Comments

Popular posts from this blog

c# - SVN Error : "svnadmin: E205000: Too many arguments" -

c# - Copy ObservableCollection to another ObservableCollection -

All overlapping substrings matching a java regex -