Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question

2 Answers

Use iPhone-Facebook-Graph-API as easy to use.

NSMutableDictionary *variables = [NSMutableDictionary dictionaryWithCapacity:4];

[variables setObject:@"MESSAGE HERE" forKey:@"message"];
[variables setObject:@"URL HERE" forKey:@"link"];
[variables setObject:@"URL NAME HERE" forKey:@"name"];
[variables setObject:@"URL DESC HERE." forKey:@"description"];

FbGraphResponse *fb_graph_response = [fbGraph doGraphPost:@"me/feed" withPostVars:variables];
share|improve this answer
Hello, When I click on postMeFeedButton then app is crashed but post is done. Can you tell me the reason of it? – saurabh jain Dec 29 '12 at 12:43

Follow this link Here is Complete Tutorial about Social FrameWork and most easy way to post image ,text and Url .

Hope it works For you.Thanks

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.