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 am using Xcode 4.5.1 (and iOS 6) and no Facebook SDK; I have been able to link to the Facebook app without problem before. However, my theory is that once Facebook released the 5.0 version of their official app, my link no longer works. It still opens the app, but it does not direct the user to my company's page, it either launches at the News Feed or it opens in the last state the Facebook app was in (i.e., in Messages, Friends list, etc.)

NSURL *facebookLink = [NSURL URLWithString:@"fb://page/316429551772278"];        
[[UIApplication sharedApplication] openURL:facebookLink];

As I mentioned, this code has worked prior to Facebook releasing the major update; my question is if there is an alternative link I can use that will both open the app and direct the user to this specific page, or is this simply a Facebook bug?

Thanks!

share|improve this question

1 Answer

up vote 2 down vote accepted

Seems that replacing page by profile in the URL works.

share|improve this answer
Thanks! That did it! – Scottaveus Oct 6 '12 at 4:19

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.