4

如何使用已安装的 Facebook 应用程序打开 Facebook 页面?正是页面,而不是个人资料,因为 fb://profile 工作正常。

startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/page_id")));

似乎 fb://page 不起作用,因为它只是打开提要。

4

3 回答 3

10

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}
于 2014-01-15T10:53:17.320 回答
0

确保您正确使用页面的页面 ID

Intent intent = new Intent(Intent.ACTION_VIEW, Uri
                                .parse("fb://page/YOUR PAGE ID"));
                        startActivity(intent);
于 2014-08-19T06:19:08.903 回答
0

我想你应该使用

https://www.facebook.com/ 而不是 fb://page/ 或 fb://profile 什么的。我希望它有帮助!

于 2015-06-24T06:50:10.063 回答