通过Facebook应用打开Facebook页面

时间:2013-11-10 14:26:08

标签: android facebook android-intent

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

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

似乎fb://页面无效,因为它只是打开Feed。

3 个答案:

答案 0 :(得分: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}

答案 1 :(得分:0)

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

Intent intent = new Intent(Intent.ACTION_VIEW, Uri
                                .parse("fb://page/YOUR PAGE ID"));
                        startActivity(intent);

答案 2 :(得分:0)

我认为你应该使用

  

https://www.facebook.com/   而不是fb:// page /或fb:// profile或者其他东西。   我希望它有用!