I’m using ASIHTTPRequest to upload a photo with PHP. The PHP side is proven to work(I’m using it for android), and I’m trying to get the iOS component to work.
Here is my upload:
NSString *myurl = @"http://mydomain.tld/php/upload.php?casenum=";
myurl = [myurl stringByAppendingFormat: casenumber];
NSString *fixedURL = [myurl stringByAddingPercentEscapesUsingEncoding:NSUTF8StringEncoding];
NSURL *url = [NSString stringWithFormat:@"%@",fixedURL];
ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
NSData *imageData = UIImageJPEGRepresentation(image1.image, 90);
[request setData:imageData withFileName:@"myphoto.jpg" andContentType:@"image/jpeg" forKey:@"file"];
[request setCompletionBlock:^{
NSString *responseString = [request responseString];
NSLog(@"Response: %@", responseString);
}];
[request setFailedBlock:^{
NSError *error = [request error];
NSLog(@"Error: %@", error.localizedDescription);
}];
[request startAsynchronous];
Ive found this on the internet and when I run it, it fails with the error 2012-01-17 10:52:16.939 MyApp[30373:707] Error: NSInvalidArgumentException
From many of the documentation and examples I’ve found online, this should work, but it isn’t, as you can see with the exception. Any help at ironing out the kinks? If you need any other information, I’ll gladly post it.
There would appear to be a couple of errors in the way that you’re producing the NSURL. Firstly, it’s only the parameters that need escaping, not the whole URL, so
should be
Secondly, you’re then trying to assign an NSString to an NSURL, so
should be
Finally, the second argument passed to
UIImageJPEGRepresentationshould be a float value between 0.0 and 1.0, so I’m guessingshould be
If it still doesn’t work after these changes, then do as JosephH suggests and use the debugger to identify exactly which line is causing the exception