通过Facebook Native app - iOS Facebook SDK分享时,“引用”缺失

问题描述 投票:1回答:1

我在我的iOS应用程序中使用Facebook共享。通过Facebook Native app分享时,“quote”缺失,请查看以下屏幕截图:

enter image description here


但是当FBSDKShareDialogModefeedBrowser时,它运作良好。检查以下屏幕截图:

enter image description here

可能是什么问题?这个功能最近是从Facebook删除的吗?以下是我的代码:

  let content = FBSDKShareLinkContent()
  content.contentURL = URL(string: "https://www.google.co.in/")
  content.hashtag = FBSDKHashtag(string: "#FeelingGood")
  content.quote = "Sample Quote"

  let dialog = FBSDKShareDialog()
  dialog.fromViewController = self

  dialog.shareContent = content
  dialog.delegate = self
  dialog.mode = FBSDKShareDialogMode.native
  if !dialog.canShow() {
    dialog.mode = FBSDKShareDialogMode.automatic
  }
  dialog.show()

我正在使用Xcode9.1,Swift 3.2,iOS 10.3.3和iOS 11以及FacebookSDK 4.19.0

ios swift facebook facebook-ios-sdk facebook-ios-sdk-4.0
1个回答
0
投票
  let content = FBSDKShareLinkContent()
  content.contentURL = URL(string: "https://www.google.co.in/")
  content.hashtag = FBSDKHashtag(string: "#FeelingGood")
  content.quote = "Sample Quote"

  let dialog = FBSDKShareDialog()
  dialog.fromViewController = self

  dialog.shareContent = content
  dialog.delegate = self
  dialog.mode = FBSDKShareDialogMode.shareSheet
  if !dialog.canShow() {
    dialog.mode = FBSDKShareDialogMode.automatic
  }
  dialog.show()`
© www.soinside.com 2019 - 2024. All rights reserved.