Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Looking for URL scheme (fb://) for the new Facebook iOS 5 app to directly open an image

The old URL scheme to open the Facebook app to a particular post does not work with the latest iOS version of the app (released in August 2012).

Under the new scheme, I've figured out how to access events directly with fb://event/eventID and I can access my users' posts via fb://profile/postID.

But how do I access a photo directly if I know the photoID?

like image 961
Bhavin Nicholas Shah Avatar asked Oct 01 '12 17:10

Bhavin Nicholas Shah


1 Answers

From what can be seen in the binary, only the following URLs are recognised:

fb://composer?%@
fb://profile
fb://profile?id=%@
fb://album?id=%@
fb://photo?%@
fb://story?%@
fb://messaging?
fb://photo?id=%@
fb://story?id=%@

Try fb://photo?id=..

like image 96
Roman Avatar answered Sep 30 '22 01:09

Roman