我有一个分享Facebook官方链接的应用程序。此链接附带说明和标题。我遇到的问题是标题和描述没有显示在Facebook上,有时会显示一个完全不同的标题,我认为是网站(链接)描述。
使用facebookSDK这是我的分享方式:
if ([FBDialogs canPresentShareDialogWithParams:params])
{
[FBDialogs presentShareDialogWithLink:params.link
name:params.name
caption:params.caption
description:params.description
picture:params.picture
clientState:nil
handler:^(FBAppCall *call, NSDictionary *results, NSError *error)
{
if(error)
{
NSLog([NSString stringWithFormat:@"Error publishing story: %@", error.description]);
} else {
// Success
NSLog(@"result %@", results);
}
}];
}
我有另一个应用程序使用相同的确切代码,标题显示就好了。我不能帮助LOL帮助