Hi, I want to sent post request, but i need to send multiple files, how to do this?
tnx
Hi, I want to sent post request, but i need to send multiple files, how to do this?
tnx
Use one of the many resources on how to configure an NSMutableURLRequest
for POSTing data. The Content-Type header should be "multipart/form-data", and each file will be concatenated in turn with an appropriate part header. RFC2388 is the relevant standard.