Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Custom URL scheme for new Facebook iOS app

Tags:

Does anyone know what the custom URL scheme is to open a Facebook page in their new iOS app. I was using fb://page/PAGE_ID however this doesn't seem to be working in the recently updated Facebook iOS app, it just opens the app but doesn't go to the required page.

like image 882
nicktones Avatar asked Aug 25 '12 21:08

nicktones


1 Answers

I got this answer at developer.facebook.com:

Replace the word page with profile and it will work. Your new statement will be:

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"fb://profile/247377102029332"]]; 
like image 59
BSevo Avatar answered Sep 28 '22 01:09

BSevo