これらの行を使用して、ユーザーをアプリからモバイル/ウェブ上の 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 の動作に遭遇した人はいますか?