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 would like to include a link in my app that will open the page in the FB app if it exists on the device, otherwise it opens it in Safari. I'm not talking about a way to do it with code - the code is already in place.

The app has a "news" page and each news item has a link. The link is downloaded with the news data and displayed in the app. I would like to have the FB app open if the user has it.

Is this possible?

share|improve this question

3 Answers

up vote 2 down vote accepted

I have used something like this in the past

    NSString *fblink = [NSString stringWithFormat:@"fb://page/%@", facebookAccount];
    NSURL *url = [NSURL URLWithString:fblink];

    //Open in safari if fb app is not installed
    if (![[UIApplication sharedApplication] openURL: url]) {
        //fanPageURL failed to open.  Open the website in Safari instead
        NSURL *webURL = [NSURL URLWithString:@"http://www.facebook.com/FANPAGEADDRESSHERE"];
        [[UIApplication sharedApplication] openURL: webURL];
    }
share|improve this answer
These do not seem to work for me with iOS6 and an older version of the Facebook SDK. – Paul Solt Oct 22 '12 at 2:07
Yup, iOS6 broke a lot of the facebook url linking. Currently, I only need to support public pages, so I do a graph API call on the username to get the facebook ID of the page then open in safari with http://facebook.com/FACEBOOK_ID_HERE. Sorry I can't help any more, haven't looked any further into it. – danielbeard Oct 22 '12 at 2:13

I would suggest reading up on URL schemes.

http://blog.anscamobile.com/2011/12/using-app-url-schemes-in-ios/

share|improve this answer

Quick note for anyone trying this after the iOS 6 change, they have changed it so page no longer works. Try using profile instead.

share|improve this answer
You should have post a comment to say that – 0x1gene yesterday

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.