I am working with the Facebook method API with iPhone-SDK. After authorizing, I tried to upload an image, using this code:
NSString *link = @"http://www.google.com/logos/2011/houdini11-hp.jpg";
NSURL *url1 = [NSURL URLWithString:link];
NSData *data1 = [NSData dataWithContentsOfURL:url1];
UIImage *img1 = [[UIImage alloc] initWithData:data1];
NSMutableDictionary *photos = [NSMutableDictionary dictionaryWithObjectsAndKeys:
img1, @"picture",
nil];
[facebook requestWithMethodName:@"photos.upload"
andParams:photos
andHttpMethod:@"POST"
andDelegate:self];
I got this error:
"error DOMAIN = Operation could not be completed. (facebookErrDomain error 324.)"
Thanks in advance.
