Finding the URL scheme (fb: //) for the new Facebook iOS 5 application to open the image directly

The old URL scheme for opening a Facebook application for a specific message does not work with the latest version of the iOS application (released in August 2012).

In the new scheme, I found out how to directly access events using fb: // event / eventID, and I can access my users' messages through fb: // profile / postID.

But how can I access the photo directly if I know the photo ID?

+5
source share
2 answers

From what is visible in binary, only the following URLs are recognized:

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

fb://photo? id =..

+3

, .

fb://photo?id='photoid'&set=a.'albumid.fbid' 
+2

All Articles