5

我正在使用 Facebook 的 ShareDialog 以便在我的应用程序中的 facebook 上共享 printScreen 图像。

安装 Facebook 应用程序后,它可以正常工作。

安装Facebook 应用程序时,它不起作用。我看到“加载”屏幕,然后它消失了,没有任何反应。共享对话框对象到达带有 FacebookException 的 onError 回调:

{FacebookGraphResponseException: (#200) Requires extended permission: publish_actions httpResponseCode: 403, facebookErrorCode: 200, facebookErrorType: OAuthException, message: (#200) Requires extended permission: publish_actions}

那么我真的需要“publish_actions”权限仅适用于 facebook 网络而不适用于 facebook 应用程序吗?诡异的..

Facebook writes:

https://developers.facebook.com/docs/sharing/android

"If the Facebook app is not installed it will automatically fallback to the web-based dialog"

"Now the SDK automatically checks for the native Facebook app. If it isn't installed, the SDK switches people to their default browser and opens the Feed Dialog."

我的代码:

mShareDialog = new ShareDialog(mActivity);

    mShareDialog.registerCallback(callbackManager, new FacebookCallback<Sharer.Result>() {
        @Override
        public void onSuccess(Sharer.Result result) {}

        @Override
        public void onCancel() {}

        @Override
        public void onError(FacebookException error) {
            if (error != null) {
                showDialog("facebook app isn't installed");
            }
        }
    });

    if (ShareDialog.canShow(ShareLinkContent.class)) {

        // get a screenshot
        Bitmap image = getScreenshot();

        SharePhoto photo = new SharePhoto.Builder()
                .setBitmap(image)
                .setCaption(getResources().getString(R.string.shareBodyText))
                .build();

        SharePhotoContent content = new SharePhotoContent.Builder()
                .addPhoto(photo)
                .build();

        mShareDialog.show(content);
    }

那么为什么在没有“publish_actions”的情况下安装 facebook 应用程序时它可以工作,而在没有安装 facebook 应用程序时它不能工作呢?

4

1 回答 1

1

这是 SharePhotoContent 的要求,您必须安装本机 Facebook 应用才能共享照片。

来自Facebook 文档

相片

人们可以使用共享对话框或自定义界面将您的应用中的照片共享到 Facebook。

  • 照片大小必须小于 12MB
  • 人们需要安装原生 Facebook for Android 应用程序,版本 7.0 或更高版本
于 2017-06-04T22:23:09.280 回答