FBSDKMessageDialog在iOS中不发送视频输入消息

FBSDKMessageDialog在iOS中不发送视频输入消息,ios,objective-c,facebook,video,fbsdk,Ios,Objective C,Facebook,Video,Fbsdk,我使用以下代码在Facebook上共享视频: NSURL *videoURL = [NSURL URLWithString:[self.myApp getVideoAssetURL]]; // it returns AssetURL of video FBSDKShareVideo *video = [[FBSDKShareVideo alloc] init]; video.videoURL = videoURL; FBSDKShareVideoContent *content = [

我使用以下代码在Facebook上共享视频:

NSURL *videoURL = [NSURL URLWithString:[self.myApp getVideoAssetURL]];
    // it returns AssetURL of video
FBSDKShareVideo *video = [[FBSDKShareVideo alloc] init];
video.videoURL = videoURL;

FBSDKShareVideoContent *content = [[FBSDKShareVideoContent alloc] init];
content.video = video;

[FBSDKShareDialog showFromViewController:self withContent:content delegate:self];
此代码正在工作,但当我替换以下代码行时

[FBSDKShareDialog showFromViewController:self withContent:content delegate:self];

在Facebook上以私人信息发送视频。messenger显示好友列表,但不显示视频,并在选择好友后禁用“发送”按钮


有没有其他方法可以做到这一点,或者可以通过使用FBSDKShareDialog来实现

您使用的SDK版本是什么?您尝试共享的视频有多大?有一个最大12MB的文件大小限制,也许这就是您遇到的问题。我们确信,大小小于12mb,但仍然没有成功
[FBSDKMessageDialog showWithContent:content delegate:self];