我已经为 FBSDKShareLinkContent 设置了内容,并设置了每个参数 contentURL、contentTitle、contentDescription、imageURL。
当共享对话框加载到 facebook 本机应用程序中时,它会正确填充我的参数。
但是,一旦我在 facebook 上查看帖子,参数数据就不再显示,而是帖子标题来自 contentURL 的元数据。
如何使用我的 contentDescription 和 contentTitle 覆盖元数据?谢谢!
// Assemble Content
var content: FBSDKShareLinkContent = FBSDKShareLinkContent()
content.contentURL = NSURL(string: DOWNLOAD_LINK_APPSTORE)
content.contentTitle = "My Custom Title"
content.contentDescription = "My Custom Description"
content.imageURL = NSURL(string: FB_IMAGE_LINK)
// Share Dialog
FBSDKShareDialog.showFromViewController(self, withContent: content, delegate: nil)