I am using facebook SDK 3.13 for posting on user's friends wall using fbwebdialogs. When i set params for this dialog it does not show them on dialog.
NSMutableDictionary *params=[NSMutableDictionary new];
FBSession *ses=[FBSession activeSession];
[params setValue:@"hello" forKey:@"caption"];
[params setValue:@"hello" forKey:@"decription"];
[params setValue:@"whats" forKey:@"name"];
[params setValue:@"http://i.imgur.com/g3Qc1HN.png" forKey:@"picture"];
[params setValue:@"http://www.dsvv.org" forKey:@"link"];
[FBWebDialogs presentFeedDialogModallyWithSession:ses parameters:params handler:^(FBWebDialogResult result,NSURL *url,NSError *error){
if (error) {
}
}];
}
it does not identify these link and produce an error. If someone who posted on user's friends wall please notify me regarding this.