我正在尝试使用FBShareDialog在Facebook上分享视频。
但我收到错误:
无法完成操作。 (com.facebook.sdk.share错误2。)
我有文件路径:
文件:///var/mobile/Containers/Data/Application/8FA91DC3-D039-40DE-81BD-D70936343AD2/Documents/Erudition.mp4
要分享的代码是:
let fbShare = FBSDKShareDialog.init()
let videoContent = FBSDKShareVideoContent()
let shareVideo = FBSDKShareVideo.init(videoURL: path)
videoContent.video = shareVideo
fbShare.shareContent = videoContent
fbShare.delegate = self
fbShare.show()
这里有什么问题?