我使用FBWebDialogs presentFeedDialogModallyWithSession:参数:handler: 在Facebook上分享。 我将参数传递为
NSMutableDictionary *parameterDict = [NSMutableDictionary dictionary];
parameterDict[@"link"] =@"link url";
parameterDict[@"name"]=@"Hello world";
parameterDict[@"caption"]=@"caption string";
parameterDict[@"friends"] = fbfriends;
FBGraphObject *obj = places[0];
parameterDict[@"place"]= [obj valueForKey:@"id"];
parameterDict[@"linkDescription"]= @"Just a test of sharing.";
此处链接发布在Facebook墙上,但标记无效 任何想法的人?
答案 0 :(得分:0)
以下是Feed对话框和相关参数的参考文档:
https://developers.facebook.com/docs/sharing/reference/feed-dialog/v2.2
如您所见,没有名为friends
,place
或linkDescription
的参数。您无法通过Feed对话框标记朋友或地点,您应该将linkDescription
更改为description
。