I am posting a post on facebook. I am able to post a URL but I also want to post some description with that URL. I am using it -
NSString *shareUrlString = [NSString stringWithFormat:@"http://www.facebook.com/sharer.php?u=%@&t=%@", urlString , description];
NSURL *url = [ [ NSURL alloc ] initWithString:urlString ];
[[UIApplication sharedApplication] openURL:url];
but I am not able to post description. So can you gave any idea to do this. I don't want to use any sdk or any api for to do it.