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?