Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Can anyone provide me some links or examples to upload files to the HTTP server using iphone APIs.

Thanks in Advance, BP

share|improve this question
what have you tried already? Google? The SDK docs? What problems are you having? – Roger Nolan Jun 1 '09 at 21:40
Given that you don't have access to the file system... what files would you be uploading? – mmc Jun 1 '09 at 22:48
3  
@mmc files you created yourself perhaps? you do have access to the filesystem within your sandbox. – Roger Nolan Jun 2 '09 at 5:53

6 Answers

The code below uses HTTP POST to post NSData to a webserver. You also need minor knowledge of PHP.

NSString *urlString = @"http://yourserver.com/upload.php";
NSString *filename = @"filename";
request= [[[NSMutableURLRequest alloc] init] autorelease];
[request setURL:[NSURL URLWithString:urlString]];
[request setHTTPMethod:@"POST"];
NSString *boundary = @"---------------------------14737809831466499882746641449";
NSString *contentType = [NSString stringWithFormat:@"multipart/form-data; boundary=%@",boundary];
[request addValue:contentType forHTTPHeaderField: @"Content-Type"];
NSMutableData *postbody = [NSMutableData data];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithFormat:@"Content-Disposition: form-data; name=\"userfile\"; filename=\"%@.jpg\"\r\n", filename] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[[NSString stringWithString:@"Content-Type: application/octet-stream\r\n\r\n"] dataUsingEncoding:NSUTF8StringEncoding]];
[postbody appendData:[NSData dataWithData:YOUR_NSDATA_HERE]];
[postbody appendData:[[NSString stringWithFormat:@"\r\n--%@--\r\n",boundary] dataUsingEncoding:NSUTF8StringEncoding]];
[request setHTTPBody:postbody];

NSData *returnData = [NSURLConnection sendSynchronousRequest:request returningResponse:nil error:nil];
returnString = [[NSString alloc] initWithData:returnData encoding:NSUTF8StringEncoding];
NSLog(@"%@", returnString);
share|improve this answer
1  
Brandon, Thanks for your response in the above code i have some questions, 1) Where we are passing upload file path 2) what i need tp pass here YOUR_NSDATA_HERE actually i am having file name called test.txt in this path /Users/abc/Desktop/test.txt can you tell me where should i pass this info using above code ,i executed above code it gives NSInvalidArgumentException. please help pleas.. --BP – BP. Jun 2 '09 at 20:54
1  
You need to convert your text file to NSData. NSData *data = [[NSData alloc] initWithContentsOfFile:path]; "path" is obviously the path to your text file such as NSString *path = [[NSHomeDirectory() stringByAppendingPathComponent:@"Documents"] stringByAppendingPathComponent:@"image.jpg"]; – Brandon Jun 2 '09 at 23:44
1  
I tried this out on my own and I keep getting the errors from my webserver about the format of the post message (System.InvalidOperationException: Request format is invalid: multipart/form-data; boundary=---------------------------14737809831466499882746641449) . Does anyone get errors? – Abel Martin Jan 14 '10 at 18:56
2  
This looks nice. I don't see any PHP though. I think you meant HTTP. – MattDiPasquale Aug 6 '10 at 14:07
3  
@Marc 14737809831466499882746641449 is a random boundary. You can use anything but everybody is always using 14737809831466499882746641449. I have absolutely no idea why, maybe it is used in some of apple's sample code. Anyone has any ideas? – Tieme Dec 10 '12 at 9:40
show 11 more comments

ASIHTTPRequest is a great wrapper around the network APIs and makes it very easy to upload a file. Here's their example (but you can do this on the iPhone too - we save images to "disk" and later upload them.

ASIFormDataRequest *request = [[[ASIFormDataRequest alloc] initWithURL:url] autorelease];
[request setPostValue:@"Ben" forKey:@"first_name"];
[request setPostValue:@"Copsey" forKey:@"last_name"];
[request setFile:@"/Users/ben/Desktop/ben.jpg" forKey:@"photo"];
share|improve this answer
Thanks man, this was exactly what I was looking for! I was so amazed it was so hard to find something like this. – quano Oct 4 '09 at 16:17
ASI is great we use it as well. Don't forget to start the request (eg: [request startSynchronous]) Source: allseeing-i.com/ASIHTTPRequest/How-to-use#streaming – Deratrius Feb 6 '12 at 10:50
1  
Sadly, it appears that ASI doesn't work in IOS5 and is no longer supported. – Russ C Jul 3 '12 at 1:06
Yes, that's correct - ASIHTTPRequest is no longer supported, sadly. – Jane Sales Aug 1 '12 at 7:30
@RussC Even though it is not supported, it still works - I had it working on iOS6 but had to turn ARC off on the files - then I found AFNetworking. – Jeff Kranenburg Jan 9 at 1:02

This is a great wrapper, but when posting to a asp.net web page, two additional post values need to be set:

    ASIFormDataRequest *request = [ASIFormDataRequest requestWithURL:url];
    //ADD THESE, BECAUSE ASP.NET is Expecting them for validation
    //Even if they are empty you will be able to post the file
    [request setPostValue:@"" forKey:@"__VIEWSTATE"];
    [request setPostValue:@"" forKey:@"__EVENTVALIDATION"]; 
    ///

    [request setFile:FIleName forKey:@"fileupload_control_Name"];
    [request startSynchronous];
share|improve this answer

This tutorial will help you upload files to a srver

share|improve this answer

I have made a lightweight backup method for the Mobile-AppSales app available at github

I wrote about it here http://memention.com/blog/2009/11/22/Lightweight-backup.html

Look for the - (void)startUpload method in ReportManager.m

share|improve this answer

I used ASIHTTPRequest a lot like Jane Sales answer but it is not under development anymore and the author suggests using other libraries like AFNetworking.

Honestly, I think now is the time to start looking elsewhere.

AFNetworking works great, and let you work with blocks a lot (which is a great relief).

Here's an image upload example from their documentation page on github:

NSURL *url = [NSURL URLWithString:@"http://api-base-url.com"];
AFHTTPClient *httpClient = [[AFHTTPClient alloc] initWithBaseURL:url];
NSData *imageData = UIImageJPEGRepresentation([UIImage imageNamed:@"avatar.jpg"], 0.5);
NSMutableURLRequest *request = [httpClient multipartFormRequestWithMethod:@"POST" path:@"/upload" parameters:nil constructingBodyWithBlock: ^(id <AFMultipartFormData>formData) {
    [formData appendPartWithFileData:imageData name:@"avatar" fileName:@"avatar.jpg" mimeType:@"image/jpeg"];
}];

AFHTTPRequestOperation *operation = [[AFHTTPRequestOperation alloc] initWithRequest:request];
[operation setUploadProgressBlock:^(NSUInteger bytesWritten, long long totalBytesWritten, long long totalBytesExpectedToWrite) {
    NSLog(@"Sent %lld of %lld bytes", totalBytesWritten, totalBytesExpectedToWrite);
}];
[httpClient enqueueHTTPRequestOperation:operation];
share|improve this answer

protected by Community Jun 22 '11 at 13:04

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.