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..

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
