I've been trying to post a link on user's wall, by using Facebook SDK for the iOS.
I'm trying the code below and it works perfectly when I don't have the Facebook App installed. But when I have it, it just ask me to authenticate and send me back to the App. It happens even just to say that I've already gave the necessary permission, but never shows the dialog to do the share.
The code is:
NSMutableDictionary *params = [NSMutableDictionary dictionaryWithObjectsAndKeys:
[NSString stringWithFormat:@"%@ %.0f%% OFF", self.offer.description,
[self.offer.price.discountPercent doubleValue] * 100], @"name",
self.offer.store, @"caption",
self.offer.imageKey, @"picture",
@"Test", @"description",
[NSString stringWithFormat:@"http://my_url.com/id%@", self.offer.offerId], @"link",
nil];
[facebook dialog:@"feed" andParams:params andDelegate:self];
Any idea? Thank you in advance ;)