我已经使用以下代码通过原生Facebook应用程序(如果已安装)集成了Facebook分享链接以及描述,标题等:
FBLinkShareParams *params = [[FBLinkShareParams alloc] initWithLink:[NSURL URLWithString:@"https://abcde.com"]
name:@"demo"
caption:@"demo"
description:@"demo"
picture:nil];
//Present share dialog
[FBDialogs presentShareDialogWithParams:params clientState:nil handler:^(FBAppCall *call, NSDictionary *results, NSError *error) {
if(error) {
// An error occurred, we need to handle the error
// See: https://developers.facebook.com/docs/ios/errors
NSLog(@"Error publishing story: %@", error.description);
} else {
// Success
NSLog(@"result %@", results);
}
}];
当此方法运行并且安装了本机facebook应用程序时,我会选择共享包含标题,链接和说明的帖子。当我点击分享并进入FB查看时,它似乎只有链接?
有人可以提出可能的解决办法吗?