0
Facebookで事前定義のテキストを共有しています。と私は画像やURLではなく、テキストのみを共有する必要があります。しかし、このエラーを取得します。facebookでテキストのみを共有する
let content = FBSDKShareLinkContent()
content.quote = "test"
let shareDialog = FBSDKShareDialog()
shareDialog.fromViewController = self
shareDialog.shareContent = content
shareDialog.delegate = self
if !shareDialog.canShow() {
print("cannot show native share dialog")
}
shareDialog.show()
事前入力テキストは機能していますが、私はURLまたは画像で設定しています。 –
プレーンテキストだけを共有しようとすると機能しますが、URL、画像、ビデオなどの追加コンテンツを共有している場合は機能しません。 – dive
何らかの仕組みであれば、事前入力は許可されません。 – luschn