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.

Possible Duplicate:
launch facebook app from other app

I want to open the Facebook app out of my own App using a scheme url. But I dont know how to do that. My scheme url looks like this: fb://page/133105433423897. Maybe via inent and/or parseUri. Any Idea?

share|improve this question

marked as duplicate by rds, Nermeen, Rory McCrossan, Muhammad Reda, Piperoman Jan 22 at 14:20

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

check out following post describing similar problem:

URL to open facebook app in android

copied for quick reference:

You need to use Intents. Here's how to call the FB application (if it is installed):

Intent intent = new Intent();
intent.setClassName("com.facebook.katana","com.facebook.katana.ProxyAuth");
intent.putExtra("client_id", applicationId);
mAuthActivityCode = activityCode;
activity.startActivityForResult(intent, activityCode);
share|improve this answer

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