如何使用已安装的Facebook应用打开Facebook页面?完全是页面,而不是个人资料,因为fb://个人资料工作正常。
startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/page_id")));
似乎fb://页面无效,因为它只是打开Feed。
答案 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或者其他东西。 我希望它有用!