我使用这些行将用户从我的应用程序引导到移动/网络上的 Facebook 应用程序:
try {
EventParams("type", "follow_facebook"));
/* should work after adding keyhash to the android app */
context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
((Activity) context).startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/"
+ FACEBOOK_APPLICATION_ID)));
} catch (Exception e) {
((Activity) context).startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://m.facebook.com/zyggabar")));
}
facebook 应用程序确实已加载,但始终带有“网络错误”标题。我猜这是Facebook的错误。有没有人遇到过这种类型的 facebook 行为?