其他分享
首页 > 其他分享> > Facebook分享视频例外“分享视频必须在Android上引用设备上的视频”

Facebook分享视频例外“分享视频必须在Android上引用设备上的视频”

作者:互联网

我通过Gradle使用Facebook Android sdk 4.6.0.

我正在尝试根据Sharing on Facebook guidenline配置Facebook后从移动目录上传视频,但我得到例外“ShareVideo必须引用设备上的视频”在sharedialog.show调用之后.通过对onError(FacebookException异常)的回调向我报告异常.

/**first checking if file exist than execute code, file exits and code execute but after executing callback with exception "Share Video must reference a video that is on the device" occurs
 **/      private void shareOnFacebook() {
                    File dir = new File(Environment.getExternalStorageDirectory(),
                            "directory");
                    File video = new File(dir, "Video.mp4");
                    if (video.exists()) {//if video file exist
                        Uri videoFileUri = Uri.parse(video.getPath());
                        ShareVideo sv = new ShareVideo.Builder()
                                .setLocalUrl(videoFileUri)
                                .build();
                        ShareVideoContent content = new ShareVideoContent.Builder()
                                .setVideo(sv)
                                .build();
                        shareDialog.show(content); //show facebook sharing screen with video
                    }
                }

解决方法:

抛出异常:
https://github.com/facebook/facebook-android-sdk/blob/master/facebook/src/com/facebook/share/internal/ShareContentValidation.java;

 if (!Utility.isContentUri(localUri) && !Utility.isFileUri(localUri)) {
throw new FacebookException("ShareVideo must reference a video that is on the device");}

public static boolean isContentUri(final Uri uri) {
return (uri != null) && ("content".equalsIgnoreCase(uri.getScheme()));
}

public static boolean isFileUri(final Uri uri) {
return (uri != null) && ("file".equalsIgnoreCase(uri.getScheme())); 
}

如你所见,fb share sdk正在检查uri是否有一个方案.
在您的情况下,当您从video.getPath创建uri时,scheme为null.你应该做的是从视频文件创建uri:

Uri videoFileUri = Uri.fromFile(视频);

标签:facebook-sharer,android,facebook,facebook-share,facebook-exception
来源: https://codeday.me/bug/20190727/1557390.html