Skip to content

Instantly share code, notes, and snippets.

@baz
Created February 6, 2014 05:48
Show Gist options
  • Save baz/8838951 to your computer and use it in GitHub Desktop.
Save baz/8838951 to your computer and use it in GitHub Desktop.
AFNetworking multipart request
NSMutableURLRequest *request = [client multipartFormRequestWithMethod:@"POST" path:path parameters:nil constructingBodyWithBlock:^(id <AFMultipartFormData> formData) {
[formData appendPartWithFileData:data
name:@"file"
fileName:attachmentName
mimeType:attachmentMIMEType];
}];
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment