Based on http://wiki.akosma.com/IPhone_URL_Schemes#Facebook and What are all the custom URL schemes supported by the Facebook iPhone app?
I want to let the user sharing via Facebook app. (If the application not installed, I will use javascript like here.
I guess I have to use fb://post/%@ but I don't know how.
p.s. Why Facebook not publish all of this? At least I have not found..
My JavaScript code:
FB.ui({
  method: 'feed',
  name: name,
  description: message,
  link: location.href,
  picture: 'PIC_URL'
});
I am looking for a similar code in deep linking.
 
    