如何从我的应用程序启动 Facebook 应用程序,并使用已填充的文本进行发布。
到目前为止,我已经尝试过了
String uri = "facebook://facebook.com/post";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
但这只是启动应用程序。
如何从我的应用程序启动 Facebook 应用程序,并使用已填充的文本进行发布。
到目前为止,我已经尝试过了
String uri = "facebook://facebook.com/post";
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
startActivity(intent);
但这只是启动应用程序。
Facebook 不允许发布预先填充的文本。请参阅https://developers.facebook.com/bugs/332619626816423/。另外,我建议您查看他们的新共享对话框https://developers.facebook.com/docs/android/share-dialog/