如何使用已安装的 Facebook 应用程序打开 Facebook 页面?正是页面,而不是个人资料,因为 fb://profile 工作正常。
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/page_id")));
似乎 fb://page 不起作用,因为它只是打开提要。
如何使用已安装的 Facebook 应用程序打开 Facebook 页面?正是页面,而不是个人资料,因为 fb://profile 工作正常。
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/page_id")));
似乎 fb://page 不起作用,因为它只是打开提要。
fb://page/{id}是要走的路:
final String url = "fb://page/" + facebookID
Intent facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
facebookAppIntent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
startActivity(facebookAppIntent);
您确定您使用的是 Facebook 页面的ID 号而不是用户名吗?
我的意思是,例如,如果您想打开 Facebook 本身的 Facebook 页面(即https://www.facebook.com/facebook),您必须使用:
fb://page/20531316728
因为20531316728是 Facebook 页面的ID(而facebook是用户名)。
如果你不知道你的 Facebook 页面的 ID,你可以打开它来检索它:
https://graph.facebook.com/{username}
确保您正确使用页面的页面 ID
Intent intent = new Intent(Intent.ACTION_VIEW, Uri
.parse("fb://page/YOUR PAGE ID"));
startActivity(intent);
我想你应该使用
https://www.facebook.com/ 而不是 fb://page/ 或 fb://profile 什么的。我希望它有帮助!