从Android应用程序打开Facebook页面?


157

从我的Android应用程序中,我想在官方Facebook应用程序中打开一个指向Facebook个人资料的链接(当然,如果已安装该应用程序)。对于iPhone,存在fb://URL方案,但是在我的Android设备上尝试相同的操作会抛出ActivityNotFoundException

是否有可能通过代码在官方Facebook应用程序中打开Facebook个人资料?


2
在Facebook开发者论坛上,有一个没有答案的线程:forum.developers.facebook.net/viewtopic.php?pid=255227(在此处添加它是因为它表明没有明显的答案,也许会得到答案)某天回答了...)
詹姆斯·摩尔

您可以从这里看到我的答案。
穆罕默德·索马基亚

Answers:


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
贾里德·

1
@AbdulWasae它已在数百万下载的应用程序中工作。如果您有更好的解决方案,请发布它,而不要低估有效的解决方案。
Jared Rummler '17

4
有人可以确认这仍然有效吗?(截至2019年6月)。我仍然得到ActivityNotFoundException
nVxx

5
这将打开Facebook页面,但与常规的fb页面不同,我们看不到“赞”按钮,个人资料和封面照片等。它直接打开“联系信息”并显示该页面中的所有帖子。
Neeraj Dwivedi

235

这适用于最新版本:

  1. 转到https://graph.facebook.com/ < 用户名此处 >(例如https://graph.facebook.com/fsintents
  2. 复制您的身份证
  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
Khobaib

1
只是需要注意的是弗拉维奥-布里亚托利://包含在库存的Nexus One 2.3.6资料/不支持Facebook应用程序V1.3.2
马克

3
DjHacktorReborn是正确的,从fb v11开始,fb:// profile / <fpid>或fb:// page / <fpid>都不再起作用了
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 App(调用Facebook App)?
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

1
个人资料适用于个人,页面适用于公司,地点,品牌。请参阅:facebook.com/help/217671661585622 [标题:页面与个人资料有何不同?]
Murmel,2015年

对于注释:intent = new Intent(Intent.ACTION_VIEW,Uri.parse(“ fb:// note /” + facebookNoteId));
voodoo98

1
要查找公共页面,事件,个人资料的ID,您可以使用FindMyFbId
Carlos Zerga,2017年

个人资料未在Facebook App中打开。
哈马德·纳西尔

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'7

3
当我使用它时,Facebook应用程序中缺少我所引用的Facebook页面的标题,例如页面个人资料图像和“页面/活动/洞察”选项卡。
Daniel Persson

如果您具有页面名称(如前所述),则有效,但如果您具有数字页面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 2014年

忽略“页面/”部分->使用“ facebook.com/” + pageId
Murmel,2015年

仍然像今天一样工作!非常感谢您,我将这部分更改为““ facebook.com/pages/"+pageid ;” 带有这个“” facebook.com/"+pageid ;“
naitbrahim

@naitbrahim感谢您让我们知道它仍在工作!我已经编辑了答案。顺便说一句,答案发布于2013年:)很高兴它对您有所帮助
MBH

15

一种更可重用的方法。

这是我们大多数应用程序通常使用的功能。因此,这是实现此目的的可重用代码段。

(在事实方面与其他答案类似。将其发布在此处只是为了简化并使实现可重用)

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

这就是您所需要的。


它引发了“ android.content.ActivityNotFoundException:找不到用于处理Intent {act = android.intent.action.VIEW dat = fb:// page / ####}”的活动
Rajbir Shienh,

9

这已经被反向工程通过Pierre87在FrAndroid论坛,但我无法找到任何地方的官方描述它,所以它必须被视为无证和容易停止在任何时刻工作:

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 ?:权限拒绝:启动意图{flg = 0x10080000 cmp = com.facebook.katana / .ProfileTabHostActivity?(具有其他功能)}来自ProcessRecord?”。活动ProfileTabHostActivity在AndroidManifest中没有android:exported标志,因此默认情况下,此活动的android:exported =“ false”。结果,ProfileTabHostActivity无法由其他应用程序启动。唯一的希望是FB开发人员可以在FB应用程序的功能版本中解决此问题。
dvpublic 2012年

我认为解决方法是关闭此“意外API”。
Vaiden

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”,您可以获取它:

  • 从页面转到“关于”。
  • 转到“更多信息”部分。

图像描述入门

要在指定的个人资料页面上打开Facebook应用,

你可以这样做:

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

或者,您可以验证未安装Facebook应用程序的时间,然后打开Facebook网页。

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“关于”标签中没有看到此内容。是私人的吗?
RoCk RoCk

5

经过大量测试,我发现了最有效的解决方案之一:

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但被禁用(例如通过使用App隔离),则此方法将不起作用。将选择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

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 18-10-10,0

@Immy-> URL中的Yourpage-1548219792xxxxxx是页面ID或页面URL。因此,例如:facebook.com/PageName是我的页面网址,id类似于2345676。因此代码中要提及的URL将是facebook.com/PageName或其他名称?
Neeraj Dwivedi

@NeerajDwivedi您同时需要:URL中的页面名称和页面ID。像这样:'String FACEBOOK_URL =“ facebook.com/BeanRoaster-1548219792112345/” ;'
Immy

@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 '17

找到解决方案了吗?
阿曼·维尔玛

1

要从您的应用启动Facebook页面,请让urlString =“ fb:// page / your_fb_page_id”

要启动Facebook Messenger,请让urlString =“ fb-messenger:// user / your_fb_page_id”

FB页面ID通常是数字。要获取它,请转到“ 查找我的FB ID”,输入您的个人资料网址,例如www.facebook.com/edgedevstudio,然后单击“查找数字ID”。

瞧,您现在有了fb数字编号。用生成的数字ID替换“ your_fb_page_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

我在webview中使用片段在oncreate内以这种形式实现了:

 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 on button click事件

 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);
    }
}
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.