I am sharing a feed on wall. The link is a link to some facebook page.
When the link is pressed from chrome, the page opens properly, 
but when I try to open it in iPhone, the page crashes.

Here is the code:
...
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"name",@"name",
@"description", @"description",
[NSString stringWithFormat: @"https://www.facebook.com/Kyoto.sushi"], @"link",
@"caption", @"caption",
[NSString stringWithFormat:pictureUrl], @"picture",
@"message",@"message",
nil];
[facebook requestWithGraphPath:@"me/feed"
andParams:params
andHttpMethod:@"POST"
andDelegate:self];
...
I pressed copy the URL, and got this one:
fb://faceweb/f?href=%2FKyoto.sushi%3Fid%3D100616296685390%26_rdr guess Facebook recognizes that it is a Facebook link and converts it to something. And this something doesn't really work.