Facebook App中的Android开放个人资料无效

时间:2015-08-11 11:14:48

标签: android facebook facebook-graph-api facebook-android-sdk

我知道这是一个众所周知的话题,但没有一个解决方案适合我。 我正在使用此代码在我的应用中的特定个人资料页面上启动Facebook应用:

try {
    Intent fb_intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/" + id_facebook));
    fb_intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
    startActivity(fb_intent);
} catch (Exception e) {
    Intent fb_intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + id_facebook));
    fb_intent.addFlags(Intent.FLAG_ACTIVITY_CLEAR_WHEN_TASK_RESET);
    startActivity(fb_intent);
}

Facebook App正确打开但显示无限循环,请求的个人资料页面上根本没有数据。

知道为什么吗?非常感谢提前

0 个答案:

没有答案