我的应用只有移动内容。它使用托管网址来引用仅在应用中打开的内容(http://fb.me/CANONICAL_ID)。就像(https://developers.facebook.com/docs/applinks/hosting-api)上显示的一样。从我的服务器获取规范URL后。 Facebook对话框假设如此共享:
FBSDKShareLinkContent *content = [[FBSDKShareLinkContent alloc] init];
[content setContentURL:[NSURL URLWithString:canonical_urlString]];
[content setContentTitle:appName]; //ignored??
[content setImageURL:[NSURL URLWithString:thumbnailUrlString]];//ignored??
[content setContentDescription:caption];//ignored??
[FBSDKShareDialog showFromViewController:self
withContent:content
delegate:nil];
当我分享时,帖子只有fb.me链接,它忽略了上面指定的缩略图,标题和描述。
为什么我不能与指定的内容属性共享链接?
任何建议都会有所帮助。