How to connect UIImage to a Facebook post using SLRequest . This is my code:
SLRequest *facebookRequest = [SLRequest requestForServiceType:SLServiceTypeFacebook requestMethod:SLRequestMethodPOST URL:[NSURL URLWithString:@"https://graph.facebook.com/me/feed"] parameters:[NSDictionary dictionaryWithObject:post forKey:@"message"]];
I know that it is necessary to specify the image in the parameters, but I do not know how to do this.
source share