I am using the sharekit to use facebook
Now here..
I want to "share link" in the facebook for this I have found this way in the sharekit documentation
// Create the item to share (in this example, a url)
NSURL *url = [NSURL URLWithString:@"http://getsharekit.com"];
SHKItem *item = [SHKItem URL:url title:@"ShareKit is Awesome!"];
// Share the item
[SHKFacebook shareItem:item];
But I dont know this is not working..I am able to see opened facebook page but this link is not being shared in my Facebook page.
Can anyone tell me the solution??