AFHTTPRequestOperationManager post multi-part request not working
Here is the template that I am using from the Git Doc AFHTTPRequestOperationManager *manager = [AFHTTPRequestOperationManager manager]; NSDictionary *parameters = @{@"foo": @"bar"}; [manager POST:@"http://example.com/resources.json" parameters:parameters success:^(AFHTTPRequestOperation *operation, id responseObject) { NSLog(@"JSON: %@", responseObject); } failure:^(AFHTTPRequestOperation *operation, NSError *error) { NSLog(@"Error: %@", error); }]; Here is how I am using it -(void)postMultipartToServer { if (!self.destinationUrl) { return; } AFHTTPRequestOperationManager *manager =