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:
Custom URL scheme for new Facebook iOS app

I have a Facebook button in my iPhone app. When it gets touched I want it to go to the Facebook iPhone app and load a facebook page if the Facebook iPhone app is on the device, if not, then go to Safari and go to this facebook page. The code below takes you to the facebook app, but it just goes to the feed. But it works how I want it to when the Facebook iphone app is not installed

This code does get run.

How can I go straight to the page from a click of the button?

NSString *urlStr = @"https://www.facebook.com/MYFACEBOOKPAGE";

NSURL *url = [[NSURL alloc] initWithString:urlStr];

if (![[UIApplication sharedApplication] openURL:url]) NSLog(@"%@%@",@"Failed to open url:",[url description]);
share|improve this question
This answered my question: stackoverflow.com/questions/12125780/… – KKendall Jan 15 at 21:29

marked as duplicate by jimmy_keen, Kate Gregory, The Shift Exchange, 0x499602D2, Eevee Jan 17 at 2:28

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

Maybe try using this instead.

https://apps.facebook.com/YOUR-NAMESPACE-HERE

I can access my own canvas app with the above URL, but using www. doesn't work.

share|improve this answer

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