🌐
Google Play
play.google.com › store › apps › details
Facebook - Apps on Google Play
Explore and expand your interests: * Shop Marketplace for hidden gems and take your hobbies to the next level * Personalize your Feed to see more of what you like, less of what you don’t * Ask Meta AI for information and get answers instantly * Drive into reels that reflect the things you're interested in * Search Facebook on any topic and get more interactive results Connect with people and communities: * Join groups to learn tips from real people who’ve been there, done that * Get inspired by creators, or catch up with Friends * Add new Friends to your world, but also decide how closely
Rating: 4.5 ​ - ​ 177M votes
🌐
App Store
apps.apple.com › us › app › facebook › id284882215
Facebook App - App Store
Facebook opened its door for folks who want to reach out to others such as creative people to showcase their talent, small and big businesses for their loyal and potential new customers, or individuals like myself who use Facebook as a gateway ...
Rating: 4.5 ​ - ​ 24.1M votes
🌐
GitHub
github.com › facebook
Meta · GitHub
We are working to build community through open source technology. NB: members must have two-factor auth. - Meta
🌐
Facebook
facebook.com › The-Open-Championship
The Open | Facebook
The Open. 571,219 likes · 3,647 talking about this. The 153rd Open at Royal Portrush. Champion Golfer of the Year: Scottie Scheffler
🌐
GitHub
github.com › facebook › fboss
GitHub - facebook/fboss: Facebook Open Switching System Software for controlling network switches.
FBOSS is Facebook's software stack for controlling and managing network switches. FBOSS consists of a number of user-space applications, libraries, and utilities. The initial open source release of FBOSS consists primarily of the agent daemon, but we are working on releasing additional pieces and functionality as well.
Starred by 929 users
Forked by 362 users
Languages   C++ 97.3% | Python 1.6% | Starlark 0.4% | Thrift 0.3% | CMake 0.3% | MDX 0.1%
🌐
Facebook
facebook.com › reg
Sign Up for Facebook
Sign up for Facebook and find your friends. Create an account to start sharing photos and updates with people you know. It's easy to register.
🌐
Facebook
facebook.com › login.php
Log into Facebook
Log into Facebook to start sharing and connecting with your friends, family, and people you know.
🌐
FB
opensource.fb.com
Meta Open Source - Facebook
The landing page of the official Meta Open Source website.
Find elsewhere
🌐
Quora
quora.com › How-do-I-open-my-Facebook-account-I-cant-open-it
How do I open my Facebook account? I can't open it.
Answer (1 of 2): Hi there! at the time of writing this I hope you have found a successful solution. I have toiled with a solution to this. I created an account. To which facebook accepted; so I am SIGNED IN to facebook I but I can not LOGIN to facebook. They accept my account but they don’t accep...
Top answer
1 of 16
238

This works on the latest version:

  1. Go to https://graph.facebook.com/<user_name_here> (https://graph.facebook.com/fsintents for instance)
  2. Copy your id
  3. Use this method:

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

This will open the Facebook app if the user has it installed. Otherwise, it will open Facebook in the browser.

EDIT: since version 11.0.0.11.23 (3002850) Facebook App do not support this way anymore, there's another way, check the response below from Jared Rummler.

2 of 16
170

In Facebook version 11.0.0.11.23 (3002850) fb://profile/ and fb://page/ no longer work. I decompiled the Facebook app and found that you can use fb://facewebmodal/f?href=[YOUR_FACEBOOK_PAGE]. Here is the method I have been using in production:

/**
 * <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);
}
🌐
Instagram
instagram.com › facebook
Facebook (@facebook) • Instagram photos and videos
7M Followers, 38 Following, 1,513 Posts - Facebook (@facebook) on Instagram: "Make sure your Facebook app is up to date and check out the new Facebook Marketplace Holiday Shop ✨"
🌐
Google Support
support.google.com › chrome › thread › 244228262 › can-t-open-facebook
Can't open facebook - Google Chrome Community
Skip to main content · Google Chrome Help · Sign in · Google Help · Help Center · Community · Google Chrome · Terms of Service · Submit feedback · Send feedback on
🌐
Facebook Messenger
messenger.com
Messenger
Messenger helps you connect with your Facebook friends and family, build your community, and deepen your interests.
🌐
Meta
meta.com › facebook-app
Facebook | Meta
Connecting with your friends and family as well as discovering new ones is easy with features like Groups, Watch and Marketplace.Go to Facebook
🌐
Facebook
facebook.com › help › 1058033620955509
Login and Password | Facebook Help Center
Learn how to use Facebook, fix a problem, and get answers to your questions.
🌐
Open Graph
ogp.me
The Open Graph protocol
The Open Graph protocol enables any web page to become a rich object in a social graph. For instance, this is used on Facebook to allow any web page to have the same functionality as any other object on Facebook.