I try new facebook sharer dialog. You can find that here
But first of all, you must open a facebook app. I set facebook app type to mobil internet instead of ios.
Secondly you can use this code for sharing :
NSURL *shareURL = [NSURL URLWithString:@"https://www.facebook.com/dialog/feed?
app_id=458358780877780&
link=https://developers.facebook.com/docs/reference/dialogs/&
picture=http://fbrell.com/f8.jpg&
name=Facebook%20Dialogs&
caption=Reference%20Documentation&
description=Using%20Dialogs%20to%20interact%20with%20users.&
redirect_uri=http://www.facebook.com/"]
[[UIApplication sharedApplication] openURL: shareURL];
You have to change your app_id within this shareURL.
Lastly; i give same redirect uri for both facebook api and direct url.