我尝试使用特定页面启动Facebook应用程序,它使用早期版本的FB APP,但新版本为25.0.0.19.30.此功能无效,uri.parse(“fb:// profile / {userid}”)的意图将我带到内容不可用的页面.
>它是来自facebook的安全更新.
解决方法
你应该使用fb:// page / {id}
从这里学到了它:http://binwaheed.blogspot.com.ar/2014/06/android-open-facebook-official-app-from.html
如果你需要回退到浏览器,你应该实现这样的事情:
Intent intent = null; try { // get the Facebook app if possible this.getPackageManager().getPackageInfo("com.facebook.katana",0); intent = new Intent(Intent.ACTION_VIEW,Uri.parse("fb://page/{id}")); intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK); } catch (Exception e) { // no Facebook app,revert to browser intent = new Intent(Intent.ACTION_VIEW,Uri.parse("https://facebook.com/PROFILENAME")); } this.startActivity(intent);