AFnetworking multipart request body is nil
问题 I am trying to upload picture to server, via af 2.0 multipart request, but it seems body is always null. Here is a snapshot from code: [self POST:path parameters:params constructingBodyWithBlock:^(id<AFMultipartFormData> formData) { [formData appendPartWithFormData:file name:@"file"]; } success:^(NSURLSessionDataTask *task, id responseObject) { andAPIResponseType:apiResponseType]; } failure:^(NSURLSessionDataTask *task, NSError *error) { }]; where file is photo that i took from device camera