Android 上的 Facebook 从我的应用分享时立即退出

Facebook on Android exits immediately when sharing with it from my app

当我从我的应用程序与 Facebook 分享一些 URL(作为文本)时,Facebook 新 post activity 立即出现并退出,我的应用程序重新出现。用户没有机会提交,甚至没有机会审阅并完成。 这(显然)不是崩溃,没有关于 Facebook 应用程序崩溃的通知。当与其他一些应用程序(例如 Gmail)共享时,它工作正常。

不幸的是,这只发生在某些设备上。我测试它的所有设备都有相同版本的 Facebook 应用程序。与Android版本无关(在两台4.4设备上测试,一台可以,一台不行)。

这是我在我的应用程序中所做的:

String textToShare = "http://lovelikeorhate.eu/question/LOVE/3";
Intent sendIntent = new Intent();
sendIntent.setAction(Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, textToShare);
sendIntent.putExtra("com.facebook.platform.extra.APPLICATION_ID", getString(R.string.facebook_app_id));
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));

任何想法可能是错误的? URL 启用了应用链接,是否相关?

该应用需要在 Facebook 上处于生产模式。这是同样的问题: ClassNotFoundException on opening facebook share icon in android