Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'm trying to use some code from SO but it fails:

Those are uri's supposed to open the right section of the app.

facebook://facebook.com/info?user=544410940     (id of the user. "patrick.boos" won't work)
facebook://facebook.com/wall?user=544410940   (will only show the info if you have added it as 

What I want is to open facebook app on a profile I've specified. This is a code that I'm trying. The number is UID of the profile.

        String uri = "facebook://facebook.com/wall?user=417079614970109"; 
        intent = new Intent(Intent.ACTION_VIEW, Uri.parse(uri));
        startActivity(intent);

Is it depreciated or what? How do I accomplish such task now?

share|improve this question
possible duplicate of Open Facebook page from Android app? – rds Jan 22 at 9:51

1 Answer

up vote 8 down vote accepted

Actually it looks like this. These URIs only work with the most recent version of the facebook app. That's why we try catch.

public static Intent getOpenFacebookIntent(Context context) {

    try {
        context.getPackageManager()
                .getPackageInfo("com.facebook.katana", 0); //Checks if FB is even installed.
        return new Intent(Intent.ACTION_VIEW,
                Uri.parse("fb://profile/254175194653125")); //Trys to make intent with FB's URI
    } catch (Exception e) {
        return new Intent(Intent.ACTION_VIEW,
                Uri.parse("https://www.facebook.com/sentiapps")); //catches and opens a url to the desired page
    }
}

In your Activity, to open it, call it like so:

Intent facebookIntent = getOpenFacebookIntent(this);
startActivity(facebookIntent);
share|improve this answer
thank you very much. Much of the threads got depreciated I suppose. There goes my facebook like sentiapps :) – Xylian May 28 '12 at 17:38
Hehe much appreciated :) – Zed Scio May 28 '12 at 17:43
How do you call this method? for example getOpenFacebookIntent (??) - what goes there for the context? – gbotha Aug 3 '12 at 22:54
Added to the answer – Zed Scio Aug 5 '12 at 11:22
Just to clarify the number after profile is the users facebook id. If you only have a username you can get the id from the id field from graph.facebook.com/[userName] – Nicholas Harlen Feb 24 at 23:01
show 1 more comment

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.