image for iphone with facebook feed dialog
I share on facebook through the following method in the delegate who is called from all portions sharing in my app the feed dialog pops up with no content but it is actually posts on facebook wall what is wrong with my code?
-(void)shareOnFaceBook:(NSMutableDictionary *)dic
{
if(self.facebook ==nil)
{
self.facebook= [[Facebook alloc] initWithAppId:@"238314679531075"];
NSArray* permissions = [[NSArray arrayWithObjects:
@"email", @"read_stream",@"publish_stream", nil] retain];
[facebook authorize:permissions delegate:self];
}
[self.facebook dialog:@"feed" andParams:dic andDelegate:self];
}
thanks