android – fb:// profile / {userid}似乎无法正常工作

前端之家收集整理的这篇文章主要介绍了android – fb:// profile / {userid}似乎无法正常工作前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用特定页面启动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);
原文链接:https://www.f2er.com/android/316259.html

猜你在找的Android相关文章