AndroidアプリからFacebookページを開きますか?


157

私のAndroidアプリから、公式Facebookアプリ(もちろんアプリがインストールされている場合)でFacebookプロファイルへのリンクを開きたいのですが。iPhoneの場合、fb://URLスキームが存在しますが、私のAndroidデバイスで同じことを試みるとがスローされますActivityNotFoundException

コードから公式FacebookアプリでFacebookプロファイルを開く機会はありますか?


2
Facebookの開発フォーラムに回答がないスレッドがあります:forum.developers.facebook.net/viewtopic.php?pid=255227(明確な回答がないことを示すため、ここに追加しますいつかそこに答えた...)
James Moore

ここから私の答えを見ることができます
Mohammad Sommakia

回答:


152

Facebookバージョン11.0.0.11.23(3002850)fb://profile/で動作しfb://page/なくなりました。Facebookアプリを逆コンパイルしたところ、使用できることがわかりましたfb://facewebmodal/f?href=[YOUR_FACEBOOK_PAGE]。これが私が生産で使用している方法です:

/**
 * <p>Intent to open the official Facebook app. If the Facebook app is not installed then the
 * default web browser will be used.</p>
 *
 * <p>Example usage:</p>
 *
 * {@code newFacebookIntent(ctx.getPackageManager(), "https://www.facebook.com/JRummyApps");}
 *
 * @param pm
 *     The {@link PackageManager}. You can find this class through {@link
 *     Context#getPackageManager()}.
 * @param url
 *     The full URL to the Facebook page or profile.
 * @return An intent that will open the Facebook page/profile.
 */
public static Intent newFacebookIntent(PackageManager pm, String url) {
  Uri uri = Uri.parse(url);
  try {
    ApplicationInfo applicationInfo = pm.getApplicationInfo("com.facebook.katana", 0);
    if (applicationInfo.enabled) {
      // http://stackoverflow.com/a/24547437/1048340
      uri = Uri.parse("fb://facewebmodal/f?href=" + url);
    }
  } catch (PackageManager.NameNotFoundException ignored) {
  }
  return new Intent(Intent.ACTION_VIEW, uri);
}

4
@DjHacktorRebornあなたはもはやIDを使用すべきではありません。通常のリンクを使用してください。
Jared Rummler、2014

2
@DjHacktorRebornチェックしたばかりで、ここで働いています。Facebookバージョン13.0.0.13.14で
Jared Rummler

1
@AbdulWasaeダウンロード数百万のアプリで機能しています。より良い解決策がある場合は、有効な解決策に反対票を投じるのではなく、投稿してください。
Jared Rummler 2017

4
誰かがこれがまだ機能することを確認できますか?(2019年6月現在)。私はまだActivityNotFoundException
nVxx

5
これによりFacebookページが開きますが、通常のfbページとは異なり、[いいね]ボタン、プロフィール、カバー写真などは表示されません。連絡先情報を直接開き、ページからのすべての投稿を表示します。
Neeraj Dwivedi

235

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

  1. 行くhttps://graph.facebook.com/<user_name_here >(https://graph.facebook.com/fsintents例えば)
  2. IDをコピー
  3. この方法を使用します。

    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>"));
       }
    }

ユーザーがインストールしている場合、これによりFacebookアプリが開きます。それ以外の場合は、ブラウザでFacebookを開きます。

編集:バージョン11.0.0.11.23(3002850)以降、Facebookアプリはこの方法をサポートしなくなりました。別の方法があります。以下のJared Rummlerからの応答を確認してください。


1
これをありがとう、私を大きく助けてくれました!さえずりのためにそれをする方法があったら
Evan R.

3
iOSで使用可能なURLスキームのリストについては、wiki.akosma.com / IPhone_URL_Schemesを参照してください-それらの一部はAndroidでも動作するはずです
FrancescoR

7
&ここにその問題の答えがあります。プロファイルの代わりに「ページ」を使用する
-stackoverflow.com/a/15872383/1433187

1
fb:// profile /は、在庫のNexus One 2.3.6に含まれているFacebookアプリv1.3.2ではサポートされていないことに注意してください
マーク

3
DjHacktorRebornは正しいです。fb:// profile / <fpid>もfb:// page / <fpid>も機能していません。fbv11を開始
sam

38

これは簡単ではありませんか?たとえば、onClickListener内では?

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

PS。http://graph.facebook.com/[userName]からID(多数)を取得します


私は同意します。Facebookアプリのパッケージ名やインテントフィルターについて何も想定しないため、これはより良い方法です。ただし、他のアプリも一致するインテントフィルターを指定している可能性があるため、同じ理由で悪化します。それはあなたが望むものに依存します。他のアプリが呼び出されないようにするために、intent.setPackageName( "com.facebook.katana")を追加することもできます。
マーク

しかし、それはブラウザを開き、Facebookデータが表示されます。どのようにしてFacebookアプリを使用することができますか(Facebookアプリを呼び出すため)。
Mikheil Zhghenti

32

Facebookページの場合:

try {
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/" + pageId));
} catch (Exception e) {
    intent =  new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + pageId));
}

Facebookプロファイルの場合:

try {
    intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/" + profileId));
} catch (Exception e) {
    intent =  new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/" + profileId));
}

...答えが違いを指摘していないため

Nexus 4でFacebook v.27.0.0.24.15およびAndroid 5.0.1を使用してテスト済み


こんにちは、プロフィールとページの違いを知る方法は?
alvarodoune、2015年

1
プロファイルは個人用であり、ページは企業、場所、ブランド用です。参照:facebook.com/help/217671661585622 [タイトル:ページと個人プロファイルの違いは?]
Murmel

ノートの場合:intent = new Intent(Intent.ACTION_VIEW、Uri.parse( "fb:// note /" + facebookNoteId));
voodoo98 2015年

1
パブリックページ、イベント、プロファイルのIDを検索するには、FindMyFbId
Carlos Zerga 2017年

Facebookアプリでプロフィールが開かない。
Hammad Nasir

27

これが2016年にそれを行う方法であり、うまく機能し、非常に簡単です。

Facebookから送信されたメールがどのようにアプリを開いたかを調べたところ、これを発見しました。

// e.g. if your URL is https://www.facebook.com/EXAMPLE_PAGE, you should put EXAMPLE_PAGE at the end of this URL, after the ?
String YourPageURL = "https://www.facebook.com/n/?YOUR_PAGE_NAME";
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(YourPageURL));

startActivity(browserIntent);

1
2016年でも完全に機能します。ベルギーからFacebookを閲覧するときの問題も解決します(ログオンしていないときにCookieが無効になっている場合)。
doubotis

3
これを使用すると、参照しているFacebookページのヘッダーがFacebookアプリに表示されません。
ダニエル・パーソン

これは、(前述のように)ページ名がある場合は機能しますが、数値のページIDがある場合は機能しません。
エリックB.

5
わかりましたが、ユーザーが自分のページを簡単に高評価できるクリーンなページは表示されません。まだこれを探しています!解決策はありますか?
Regis_AG

誰もが@Regis_AGを解決する必要がありますか?
adrianvintu

22

これはこれを行うための最も簡単なコードです

public final void launchFacebook() {
        final String urlFb = "fb://page/"+yourpageid;
        Intent intent = new Intent(Intent.ACTION_VIEW);
        intent.setData(Uri.parse(urlFb));

        // If a Facebook app is installed, use it. Otherwise, launch
        // a browser
        final PackageManager packageManager = getPackageManager();
        List<ResolveInfo> list =
            packageManager.queryIntentActivities(intent,
            PackageManager.MATCH_DEFAULT_ONLY);
        if (list.size() == 0) {
            final String urlBrowser = "https://www.facebook.com/"+pageid;
            intent.setData(Uri.parse(urlBrowser));
        }

        startActivity(intent);
    }

これは機能していません。" facebook.com/pages/"+pageid "というリンクを設定しているとき
BSKANIA

'pages /'-part-> use "facebook.com/"を省略します+ pageId
Murmel

まだ今日も働いています!この部分を変更していただき、誠にありがとうございます。 " " facebook.com/pages/"+pageid ; " これで "" facebook.com/"+pageid ; "
naitbrahim

@naitbrahimまだ機能していることをお知らせいただきありがとうございます。回答を編集しました。ところで、答えは2013年に投稿されました:) Happy it helped
MBH

15

より再利用可能なアプローチ。

これは、ほとんどのアプリで一般的に使用されている機能です。したがって、これを実現するための再利用可能なコードがあります。

(ファクトに関しては他の回答と同様です。単純化して実装を再利用できるようにするためにここに投稿します)

"fb://page/新しいバージョンのFBアプリでは動作しません。fb://facewebmodal/f?href=新しいバージョンに使用する必要があります。(ここの別の答えで述べたように

これは、現在私のアプリの1つに含まれている完全に機能する動作中のコードです。

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);

それだけで十分です。


「android.content.ActivityNotFoundException:Intent {act = android.intent.action.VIEW dat = fb:// page / ####}」を処理するためのアクティビティが見つかりませんでした
Rajbir Shienh

9

これは、FrAndroidフォーラムのPierre87によってリバースエンジニアリングされていますが、それを説明する公式の担当者はどこにもいないので、ドキュメント化されておらず、いつでも動作を停止する責任があるものとして扱う必要があります。

Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setClassName("com.facebook.katana", "com.facebook.katana.ProfileTabHostActivity");
intent.putExtra("extra_user_id", "123456789l");
this.startActivity(intent);

はい、ソリューションは機能しなくなりました。エラーは次のとおりです。「java.lang.SecurityException ?: Permission Denial:starting Intent {flg = 0x10080000 cmp = com.facebook.katana / .ProfileTabHostActivity?(has extras)} from ProcessRecord?」。アクティビティProfileTabHostActivityにはAndroidManifestにandroid:exportedフラグがないため、デフォルトではこのアクティビティのandroid:exported = "false"です。その結果、ProfileTabHostActivityは他のアプリケーションから起動できません。FB開発者がFBアプリケーションの機能バージョンでこの問題を修正することを唯一の希望。
dvpublic '21 / 11/21

修正はこの「偶発的なAPI」を閉じることだったと思います。
Vaiden 2013

7

このコードを試してください:

String facebookUrl = "https://www.facebook.com/<id_here>";
        try {
            int versionCode = getPackageManager().getPackageInfo("com.facebook.katana", 0).versionCode;
            if (versionCode >= 3002850) {
                Uri uri = Uri.parse("fb://facewebmodal/f?href=" + facebookUrl);
                   startActivity(new Intent(Intent.ACTION_VIEW, uri));
            } else {
                Uri uri = Uri.parse("fb://page/<id_here>");
                startActivity(new Intent(Intent.ACTION_VIEW, uri));
            }
        } catch (PackageManager.NameNotFoundException e) {
            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookUrl)));
        }

7

これを行うには、「FacebookページID」が必要です。これを取得できます。

  • ページから「About」に行きます。
  • 「詳細」セクションに移動します。

はじめにladescripciónde la imagenaquí

指定したプロフィールページでFacebookアプリを開くには、

あなたはこれを行うことができます:

 String facebookId = "fb://page/<Facebook Page ID>";
  startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookId)));

または、Facebookアプリがインストールされていないことを確認してから、FacebookのWebページを開くこともできます。

String facebookId = "fb://page/<Facebook Page ID>";
String urlPage = "http://www.facebook.com/mypage";

     try {
          startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(facebookId )));
        } catch (Exception e) {
         Log.e(TAG, "Application not intalled.");
         //Open url web page.
         startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
        }

これはPage ID[About]タブには表示されませんでした。プライベートですか?
RoCk RoCk

5

多くのテストの後、私は最も効果的なソリューションの1つを見つけました。

private void openFacebookApp() {
    String facebookUrl = "www.facebook.com/XXXXXXXXXX";
    String facebookID = "XXXXXXXXX";

    try {
        int versionCode = getActivity().getApplicationContext().getPackageManager().getPackageInfo("com.facebook.katana", 0).versionCode;

        if(!facebookID.isEmpty()) {
            // open the Facebook app using facebookID (fb://profile/facebookID or fb://page/facebookID)
            Uri uri = Uri.parse("fb://page/" + facebookID);
            startActivity(new Intent(Intent.ACTION_VIEW, uri));
        } else if (versionCode >= 3002850 && !facebookUrl.isEmpty()) {
            // open Facebook app using facebook url
            Uri uri = Uri.parse("fb://facewebmodal/f?href=" + facebookUrl);
            startActivity(new Intent(Intent.ACTION_VIEW, uri));
        } else {
            // Facebook is not installed. Open the browser
            Uri uri = Uri.parse(facebookUrl);
            startActivity(new Intent(Intent.ACTION_VIEW, uri));
        }
    } catch (PackageManager.NameNotFoundException e) {
        // Facebook is not installed. Open the browser
        Uri uri = Uri.parse(facebookUrl);
        startActivity(new Intent(Intent.ACTION_VIEW, uri));
    }
}

4

私の回答は、joaomgcdから広く受け入れられている回答に基づいています。ユーザーがFacebookをインストールしているが無効にした場合(たとえば、アプリ検疫を使用して)、このメソッドは機能しません。Twitterアプリのインテントが選択されますが、無効になっているため処理できません。

の代わりに:

context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/620681997952698"));

以下を使用して、実行することを決定できます。

PackageInfo info = context.getPackageManager().getPackageInfo("com.facebook.katana", 0);
if(info.applicationInfo.enabled)
    return new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/620681997952698"));
else
    return new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/620681997952698"));

4

私が見つけた最良の答え、それは素晴らしい働きをしています。

ブラウザでFacebookのページに移動し、右クリックして[ソースコードの表示]をクリックし、page_id属性を見つけます。page_idこの行の最後のバックスラッシュの後に使用する必要があります。

fb://page/pageID

例えば:

Intent facebookAppIntent;
try {
    facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://page/1883727135173361"));
    startActivity(facebookAppIntent);
} catch (ActivityNotFoundException e) {
    facebookAppIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://facebook.com/CryOut-RadioTv-1883727135173361"));
    startActivity(facebookAppIntent);
}

これは静的アプリでのみ意味があります。
Irshu 2017

4

2020年3月の時点で、これは完全に機能します。

private void openFacebookPage(String pageId) {
    String pageUrl = "https://www.facebook.com/" + pageId;

    try {
        ApplicationInfo applicationInfo = getPackageManager().getApplicationInfo("com.facebook.katana", 0);

        if (applicationInfo.enabled) {
            int versionCode = getPackageManager().getPackageInfo("com.facebook.katana", 0).versionCode;
            String url;

            if (versionCode >= 3002850) {
                url = "fb://facewebmodal/f?href=" + pageUrl;
            } else {
                url = "fb://page/" + pageId;
            }

            startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
        } else {
            throw new Exception("Facebook is disabled");
        }
    } catch (Exception e) {
        startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(pageUrl)));
    }
}

2
Intent intent = null;
    try {
        getPackageManager().getPackageInfo("com.facebook.katana", 0);
        String url = "https://www.facebook.com/"+idFacebook;
        intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://facewebmodal/f?href="+url));
    } catch (Exception e) {
        // no Facebook app, revert to browser
        String url = "https://facebook.com/"+idFacebook;
        intent = new Intent(Intent.ACTION_VIEW);
        intent .setData(Uri.parse(url));
    }
    this.startActivity(intent);

2

2018年7月の時点で、これはすべてのデバイスでFacebookアプリの有無にかかわらず完全に機能します。

private void goToFacebook() {
    try {
        String facebookUrl = getFacebookPageURL();
        Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
        facebookIntent.setData(Uri.parse(facebookUrl));
        startActivity(facebookIntent);
    } catch (Exception e) {
        e.printStackTrace();
    }
}

private String getFacebookPageURL() {
    String FACEBOOK_URL = "https://www.facebook.com/Yourpage-1548219792xxxxxx/";
    String facebookurl = null;

    try {
        PackageManager packageManager = getPackageManager();

        if (packageManager != null) {
            Intent activated = packageManager.getLaunchIntentForPackage("com.facebook.katana");

            if (activated != null) {
                int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;

                if (versionCode >= 3002850) {
                    facebookurl = "fb://page/1548219792xxxxxx";
                }
            } else {
                facebookurl = FACEBOOK_URL;
            }
        } else {
            facebookurl = FACEBOOK_URL;
        }
    } catch (Exception e) {
        facebookurl = FACEBOOK_URL;
    }
    return facebookurl;
}

FB Liteアプリには個別のパッケージ名があります。この方法を使用する場合は、com.facebook.liteも確認する必要があります。ただし、LiteがこれらのURLを処理するかどうかは確認していません
androidguy

@androidguy FB Liteを持っていません。コードがそれで機能するかどうかを知るのは良いことです。どうにかしてそれをテストし、発見をここに置くことができれば、それはまだここに来る他の人を助けるでしょう。感謝、ありがとう
イミー

@Immy-> URLのYourpage-1548219792xxxxxxは、ページIDまたはページURLです。つまり、例:facebook.com/PageNameは私のページのURLであり、IDは2345676のようなものです。コードで言及するURLはfacebook.com/PageNameまたは他の何かになりますか?
Neeraj Dwivedi

@NeerajDwivedi URL内のページ名とページIDの両方が必要です。次のようなもの: 'String FACEBOOK_URL = " facebook.com/BeanRoaster-1548219792112345/" ;'
イミー

@Immy FACEBOOK_URLを " facebook.com/myPageName-myPageID "に置き換えるまったく同じコードを使用しており、上部に検索バーがある空白のページを取得しています。私はAndroid 9で最新のFacebookアプリを使用しています(Fbアプリバージョン-237.0.0.44.120)
Neeraj Dwivedi

1

FacebookページをFacebookアプリに開く方法を作成しました、アプリが存在しない場合はChromeで開きます

    String socailLink="https://www.facebook.com/kfc";
    Intent intent = new Intent(Intent.ACTION_VIEW);
    String facebookUrl = Utils.getFacebookUrl(getActivity(), socailLink);
    if (facebookUrl == null || facebookUrl.length() == 0) {
        Log.d("facebook Url", " is coming as " + facebookUrl);
        return;
    }
    intent.setData(Uri.parse(facebookUrl));
    startActivity(intent);

Utils.classはこれらのメソッドを追加します

public static String getFacebookUrl(FragmentActivity activity, String facebook_url) {
    if (activity == null || activity.isFinishing()) return null;

    PackageManager packageManager = activity.getPackageManager();
    try {
        int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;
        if (versionCode >= 3002850) { //newer versions of fb app
            Log.d("facebook api", "new");
            return "fb://facewebmodal/f?href=" + facebook_url;
        } else { //older versions of fb app
            Log.d("facebook api", "old");
            return "fb://page/" + splitUrl(activity, facebook_url);
        }
    } catch (PackageManager.NameNotFoundException e) {
        Log.d("facebook api", "exception");
        return facebook_url; //normal web url
    }
}

この

 /***
 * this method used to get the facebook profile name only , this method split domain into two part index 0 contains https://www.facebook.com and index 1 contains after / part
 * @param context contain context
 * @param url contains facebook url like https://www.facebook.com/kfc
 * @return if it successfully split then return "kfc"
 *
 * if exception in splitting then return "https://www.facebook.com/kfc"
 *
 */
 public static String splitUrl(Context context, String url) {
    if (context == null) return null;
    Log.d("Split string: ", url + " ");
    try {
        String splittedUrl[] = url.split(".com/");
        Log.d("Split string: ", splittedUrl[1] + " ");
        return splittedUrl.length == 2 ? splittedUrl[1] : url;
    } catch (Exception ex) {
        return url;
    }
}

3
最新バージョンでは、ホームページに移動しようとしているときに、実際にこの情報ページに移動します。任意のヒント ?
Balaji Katika、2017

あなたは解決策を見つけましたか?
アマンバーマ2018

1

Facebookページを起動するにはアプリからは、urlString = "fb:// page / your_fb_page_id"とします

Facebookメッセンジャーを起動するには、urlString = "fb-messenger:// user / your_fb_page_id"とします。

FBページIDは通常数値です。それを取得するには、www.facebook.com / edgedevstudioのようなプロファイルのURLを入力して、Find My FB IDに進みます。、「Find Numberic ID」をクリックします。

これで、fbの数値IDを取得できました。「your_fb_page_id」を、生成された数値IDに置き換えます

 val intent = Intent(Intent.ACTION_VIEW, Uri.parse(urlString))
 if (intent.resolveActivity(packageManager) != null) //check if app is available to handle the implicit intent
 startActivity(intent)

1

定数を宣言する

  private String FACEBOOK_URL="https://www.facebook.com/approids";
    private String FACEBOOK_PAGE_ID="approids";

メソッドの宣言

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)) {
                    Log.d("main","fb first url");
                    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;
        }
    }

関数を呼び出す

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

0

2018年10月にこれに答えます。実際のコードは、pageIDを使用するコードです。私はそれをテストしました、そしてそれは機能しています。

public static void openUrl(Context ctx, String url){
    Uri uri = Uri.parse(url);
    if (url.contains(("facebook"))){
        try {
            ApplicationInfo applicationInfo = ctx.getPackageManager().getApplicationInfo("com.facebook.katana", 0);
            if (applicationInfo.enabled) {
                uri = Uri.parse("fb://page/<page_id>");
                openURI(ctx, uri);
                return;
            }
        } catch (PackageManager.NameNotFoundException ignored) {
            openURI(ctx, uri);
            return;
        }
    }

0

oncreate内でfragment-を使用して、この形式でWebViewに実装しました。

 webView.setWebViewClient(new WebViewClient()
{
    public boolean shouldOverrideUrlLoading(WebView viewx, String urlx)
                {
     if(Uri.parse(urlx).getHost().endsWith("facebook.com")) {
                        {
                            goToFacebook();
                        }
                        return false;
                    }
    Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(urlx));
                    viewx.getContext().startActivity(intent);
                    return true;
                }

});

およびonCreateViewの外:

 private void goToFacebook() {
        try {
            String facebookUrl = getFacebookPageURL();
            Intent facebookIntent = new Intent(Intent.ACTION_VIEW);
            facebookIntent.setData(Uri.parse(facebookUrl));
            startActivity(facebookIntent);
        } catch (Exception e) {
            e.printStackTrace();
        }
    }

    //facebook url load
    private String getFacebookPageURL() {
        String FACEBOOK_URL = "https://www.facebook.com/pg/XXpagenameXX/";
        String facebookurl = null;

        try {
            PackageManager packageManager = getActivity().getPackageManager();

            if (packageManager != null) {
                Intent activated = packageManager.getLaunchIntentForPackage("com.facebook.katana");

                if (activated != null) {
                    int versionCode = packageManager.getPackageInfo("com.facebook.katana", 0).versionCode;

                    if (versionCode >= 3002850) {
                        facebookurl = "fb://page/XXXXXXpage_id";
                    }
                } else {
                    facebookurl = FACEBOOK_URL;
                }
            } else {
                facebookurl = FACEBOOK_URL;
            }
        } catch (Exception e) {
            facebookurl = FACEBOOK_URL;
        }
        return facebookurl;
    }

0

Facebook SDKを使用せずにボタンクリックイベントでFBを開く

 Intent FBIntent = new Intent(Intent.ACTION_SEND);
    FBIntent.setType("text/plain");
    FBIntent.setPackage("com.facebook.katana");
    FBIntent.putExtra(Intent.EXTRA_TEXT, "The text you wanted to share");
    try {
        context.startActivity(FBIntent);
    } catch (android.content.ActivityNotFoundException ex) {
        Toast.makeText(context, "Facebook have not been installed.", Toast.LENGTH_SHORT).show( );
    }

0
fun getOpenFacebookIntent(context: Context, url: String) {
    return try {
        context.packageManager.getPackageInfo("com.facebook.katana", 0)
        context.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/$url/")))
    } catch (e: Exception) {
        context.startActivity(Intent(Intent.ACTION_VIEW, Uri.parse(url)))
    }
}

0

1-IDを取得するには、画像プロファイルに移動して右クリックし、リンクのコピーをコピーします。

        try {
                Intent intent = new Intent(Intent.ACTION_VIEW,Uri.parse("fb://profile/id"));
                startActivity(intent);
            } catch(Exception e) {
                startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse("facebook url")));
            }
        }
    });

-1
try {
       String[] parts = url.split("//www.facebook.com/profile.php?id=");
       getPackageManager().getPackageInfo("com.facebook.katana", 0);
       startActivity(new Intent (Intent.ACTION_VIEW, Uri.parse(String.format("fb://page/%s", parts[1].trim()))));
    } catch (Exception e) {
       startActivity(new Intent(Intent.ACTION_VIEW, Uri.parse(url)));
    }

-2

次のように、ボタンをクリックするとFacebookアプリを開くことができます。

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    this.findViewById(R.id.button1).setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {

            startNewActivity("com.facebook.katana");
        }
    });

}

public void startNewActivity( String packageName)
{
    Intent intent = MainActivity.this.getPackageManager().getLaunchIntentForPackage(packageName);
    if (intent != null)
    {
        // we found the activity
        // now start the activity
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        startActivity(intent);
    }
    else
    {
        // bring user to the market
        // or let them choose an app?
        intent = new Intent(Intent.ACTION_VIEW);
        intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        intent.setData(Uri.parse("market://details?id="+packageName));
        startActivity(intent);
    }
}
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.