web-dev-qa-db-ja.com

AndroidのFacebookアプリ(インストールされている場合)でFacebookページを開きます

Facebookアプリが利用可能な場合は、AndroidアプリからFacebookページを開きます。利用できない場合は、このページをデフォルトのブラウザーで開く必要があります。

このため、私は次のコードを試しました:

try {
  Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/MY_PAGE_ID"));
startActivity(intent);
} catch (Exception e) {
   startActivity(new Intent(Intent.ACTION_VIEW,    Uri.parse("http://www.facebook.com/MY_PAGE_NAME")));
}

問題は、最新バージョンのFacebookを備えたAndroidデバイスを使用していることです。 Facebookページをアプリから開く場合、Facebookアプリは開きますが、ページは開きません。

メッセージが表示されるだけです:

タイムラインの読み込みに問題があります。

なにが問題ですか?

29
SpecialFighter

"fb://page/は、FBアプリの新しいバージョンでは機能しません。新しいバージョンにはfb://facewebmodal/f?href=を使用する必要があります。

これは、現在私のアプリのいずれかに存在する本格的な動作コードです。

public static String FACEBOOK_URL = "https://www.facebook.com/YourPageName";
public static String FACEBOOK_PAGE_ID = "YourPageName";

//method to get the right URL to use in the intent
public String getFacebookPageURL(Context context) {
        PackageManager packageManager = context.getPackageManager();
        try {
            int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;
            if (versionCode >= 3002850) { //newer versions of fb app
                return "fb://facewebmodal/f?href=" + FACEBOOK_URL;
            } else { //older versions of fb app
                return "fb://page/" + FACEBOOK_PAGE_ID;
            }
        } catch (PackageManager.NameNotFoundException e) {
            return FACEBOOK_URL; //normal web url
        }
    }

このメソッドは、インストールされている場合はアプリの正しいURL、アプリがインストールされていない場合はWeb URLを返します。

次に、次のようにインテントを開始します。

Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
String facebookUrl = getFacebookPageURL(this);
facebookIntent.setData(Uri.parse(facebookUrl));
startActivity(facebookIntent);

必要なのはそれだけです。

これは最新バージョンで動作します:

https://graph.facebook.com/ (たとえば、 https://graph.facebook.com/fsintents に移動します)。

IDをコピーするこの方法を使用します:

public static Intent getOpenFacebookIntent(Context context) {
    try {
        context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
        return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/<id_here>"));
    } catch (Exception e) {
        return new Intent(Intent.ACTION_VIEW,Uri.parse("https://www.facebook.com/<user_name_here>"));
    }
}
14
Yash Jain

デバイスでFacebookが無効になっているため、アプリがクラッシュするため、@ AndroidMechanicsコードを変更しました。

変更されたgetFacebookUrlは次のとおりです。

public String getFacebookPageURL(Context context) {
        PackageManager packageManager = context.getPackageManager();
        try {
            int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;

            boolean activated =  packageManager.getApplicationInfo("com.facebook.katana", 0).enabled;
            if(activated){
                if ((versionCode >= 3002850)) { 
                    return "fb://facewebmodal/f?href=" + FACEBOOK_URL;
                } else { 
                    return "fb://page/" + FACEBOOK_PAGE_ID;
                }
            }else{
                return FACEBOOK_URL;
            }
         } catch (PackageManager.NameNotFoundException e) {
            return FACEBOOK_URL; 
        }
    }

追加された唯一のことは、アプリが無効になっているかどうかを確認することです。無効になっている場合、アプリはwebbrowserを呼び出します。

10
Seref

Jared RummlerAndroidMechanic でコードを混在させるソリューションを次に示します。

注:fb://facewebmodal/f?href=は、同様のボタンやその他の重要なボタンを持たない奇妙なFacebookページにリダイレクトするため、fb://page/。現在のFacebookバージョン(126.0.0.21.77、2017年6月1日)で正常に動作します。キャッチは役に立たないかもしれないので、念のために残しました。

public static String getFacebookPageURL(Context context)
{
    final String FACEBOOK_PAGE_ID = "123456789";
    final String FACEBOOK_URL = "MyFacebookPage";

    if(appInstalledOrNot(context, "com.facebook.katana"))
    {
        try
        {
            return "fb://page/" + FACEBOOK_PAGE_ID;
            // previous version, maybe relevant for old Android APIs ?
            // return "fb://facewebmodal/f?href=" + FACEBOOK_URL;
        }
        catch(Exception e) {}
    }
    else
    {
        return FACEBOOK_URL;
    }

}

この投稿 に対するAerrowの回答から取得(および変更)したappInstalledOrNot関数を次に示します。

private static boolean appInstalledOrNot(Context context, String uri)
{
    PackageManager pm = context.getPackageManager();
    try
    {
        pm.getPackageInfo(uri, PackageManager.GET_ACTIVITIES);
        return true;
    }
    catch(PackageManager.NameNotFoundException e)
    {
    }

    return false;
}

ページのFacebook IDを取得する方法:

  1. あなたのページに行く
  2. 右クリックしてView Page Source
  3. ページ内の検索:fb://page/?id=
  4. どうぞ!
6
Julian Honma

これを使用できます:

try {
                Intent followIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://facewebmodal/f?href=" +
                        "https://www.facebook.com/app_scoped_user_id/"+scoped user id+"/"));
                activity.startActivity(followIntent);
            } catch (Exception e) {
                activity.startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + user name)));
                String errorMessage = (e.getMessage() == null) ? "Message is empty" : e.getMessage();
            }

attention:link "permission facebook apiからスコープユーザーIDを取得できます。

0