I am using facebook-ios-sdk in my iphone application

I am trying to post a link on facebook from my iphone application

        NSLog(@"link..%@",[shareDict objectForKey:@"url"]);
        NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
                                       [shareDict objectForKey:@"url"], @"link",nil];
        [facebookObj requestWithMethodName:@"facebook.Stream.publish" andParams:params
                             andHttpMethod:@"POST" andDelegate:self];

it successfully posted as my application log

2011-03-30 13:10:02.128 myApp[1804:207] link..http://khabar.ndtv.com/Home.aspx
2011-03-30 13:10:04.064 myApp[1804:207] received response..https://api.facebook.com/method/facebook.Stream.publish
2011-03-30 13:10:04.066 myApp[1804:207] request didLoad.. . . API..thod/facebook.stream.publish

But link is not showing on facebook wall... it shown as..

enter image description here

Now

  • How I post the link with out showing dialog
  • How I it as like in facebook .. as user have option to select the image from link with out any dialog.. I can use my own view for it. like as enter image description here
link|improve this question

64% accept rate
I have add the message object in params Dictionary then its shown in facebook.. now how I add the description of link and image(if any) in the link .. – Amit Battan Mar 30 '11 at 8:08
try using stream.publish instead of facebook.stream.publish and Check out this link: developers.facebook.com/docs/reference/rest/stream.publish – Aby Apr 13 '11 at 17:38
To add link and image use this: NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys: @"check.com/image.png";, @"picture", @"yourlink.com";, @"link", @"CAption of the Image comes here", @"caption", @"Description here", @"description", @"MESSAGE COMES HERE", @"message", nil]; – Aby Apr 13 '11 at 17:41
feedback

1 Answer

Here's my FB arguments snippet:

[fbArguments setObject:theName        forKey:@"name"];
[fbArguments setObject:theCpation     forKey:@"caption"];
[fbArguments setObject:theDescription forKey:@"description"];
[fbArguments setObject:theLink        forKey:@"link"];
[fbArguments setObject:theHREF        forKey:@"href"];
[fbArguments setObject:thePictureURL  forKey:@"picture"];
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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