Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8741201
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:16:09+00:00 2026-06-13T11:16:09+00:00

Possible Duplicate: launch facebook app from other app Till few days ago, in order

  • 0

Possible Duplicate:
launch facebook app from other app

Till few days ago, in order to show to my users another user profile I used the following solution:

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

This solution is used by a lot of the stackoverflow users (From seeing all the questions and answers about this subject).

The last facebook app update (1.9.11), maybe even before made this solution obsolete.
Now you will get the following exception for doing so:

java.lang.SecurityException: Permission Denial: starting Intent {
act=android.intent.action.VIEW
cmp=com.facebook.katana/.ProfileTabHostActivity (has extras) } from
ProcessRecord… requires null

Does anyone know how can I now open the facebook app?

Thanks

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-13T11:16:10+00:00Added an answer on June 13, 2026 at 11:16 am

    The solution described in the question won’t work anymore (In the edit of this question you can see the details why). The new version of the facebook app doesn’t support anymore those kind of intents. See here the bug report

    The new solution is to use the iPhone scheme mechanism (Yes, facebook decided to support the iPhone mechanism in Android instead of the implicit intent mechanism of Android).

    So in order to open the facebook app with a user profile all you need to do is:

    String facebookScheme = "fb://profile/" + facebookId;
    Intent facebookIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(facebookScheme)); 
    startActivity(facebookIntent);
    

    If you are looking for other actions you can use the following page for all available actions (you have to test it though, since I didn’t find an official publication of facebook about this)

    EDIT

    This part of the question is giving more details about the nature of the problem and solution, but the details above are enough in order to solve the problem.

    With the new version of the facebook app, the manifest file was changed.
    Today the activity

    com.facebook.katana.ProfileTabHostActivity

    described in the manifest in the following way:

    <activity android:theme="@style/Theme.Facebook"
    android:name="com.facebook.katana.ProfileTabHostActivity"
    android:configChanges="keyboard|keyboardHidden|orientation|screenLayout"
    android:windowSoftInputMode="adjustPan" />
    

    Since there is no intent-filter anymore for this activity the default value of android:exported is now false. In the previous versions, there was intent-filter and then the default value was true (You are welcome to read about it here) I would like to thank this answer for the details about the exported value.

    But the new version have the following activity:

    <activity android:name="com.facebook.katana.IntentUriHandler">
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <data android:scheme="facebook" />
            </intent-filter>
            <intent-filter>
                <action android:name="android.intent.action.VIEW" />
                <category android:name="android.intent.category.DEFAULT" />
                <category android:name="android.intent.category.BROWSABLE" />
                <data android:scheme="fb" />
            </intent-filter>
        </activity>
    

    And here you can see that they support the fb and facebook scheme.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Possible Duplicate: launch facebook app from other app I'm looking to see if it
Possible Duplicate: launch facebook app from other app I am doing one android project,
Possible Duplicate: launch facebook app from other app I was wondering if there is
Possible Duplicate: launch facebook app from other app Im a beginner with facebook api
Possible Duplicate: Launch an app from within another (iPhone) I have designed sample applications
Possible Duplicate: Android Launch an application from another application I am having a problem
Possible Duplicate: Show activity indicator during application launch All, Inside my app delegate, I
Possible Duplicate: Android Launch an application from another application I want to start Another
Possible Duplicate: Opening the Settings app from another app I am calling: [[UIApplication sharedApplication]
Possible Duplicate: Launching application from a SMS message launch an app from a link

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.