I am trying to use facebook publish API link this as given here http://developers.facebook.com/docs/reference/api/post/
NSDictionary *privacyDict = [[[NSDictionary alloc] initWithObjectsAndKeys:@"SELF",@"value",nil] autorelease];
SBJSON *jsonWriter = [[SBJSON new] autorelease];
NSString *privacyJSONStr = [jsonWriter stringWithObject:privacyDict];
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Test test", @"message",
privacyJSONStr, @"privacy",
@"http://www.facebook.com/", @"link",
@"This name check where it will show", @"name",
@"Caption for the link", @"caption",
@"Longer description of the link", @"description",
nil];
[facebookObj requestWithMethodName:@"facebook.Stream.publish" andParams:params andHttpMethod:@"POST" andDelegate:self];
It posted successfully, but not like that as I expected
there is no caption, name, description , link etc
it shown as

This type of result I can get by this parameter
NSMutableDictionary* params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
@"Test test", @"message",
privacyJSONStr, @"privacy",
nil];
What is the mistake, and How we can publish all the parameter
Amit Battan