android中的Facebook对话不会出现



我正在开发android应用程序,我正在使用android的Facebook SDK。

我想使用Facebook共享对话框:

ShareLinkContent content = new ShareLinkContent.Builder()
                .setContentUrl(Uri.parse("https://developers.facebook.com"))
                .build();

当我运行应用程序时,不会发生任何事情,也不会出现任何对话框——没有任何错误。

有人能帮忙吗?

初始化第一个

FacebookSdk.sdkInitialize(getApplicationContext());
callbackManager = CallbackManager.Factory.create();
shareDialog = new ShareDialog(this);

Than显示

if (ShareDialog.canShow(ShareLinkContent.class)) {
ShareLinkContent linkContent = new ShareLinkContent.Builder()
        .setContentTitle("Hello Facebook")
        .setContentDescription(
                "The 'Hello Facebook' sample  showcases simple Facebook integration")
        .setContentUrl(Uri.parse("http://developers.facebook.com/android"))
        .build();
shareDialog.show(linkContent);
}

最后调用这个。

@Override
protected void onActivityResult(final int requestCode, final int resultCode, final Intent data) {
    super.onActivityResult(requestCode, resultCode, data);
    callbackManager.onActivityResult(requestCode, resultCode, data);
}