Thanks for reading.
I am new to iOS and I am trying to upload an Image and a text using multi-part form encoding in iOS.
The curl equivalent is something like this: curl -F "param1=value1" -F "param2=@testimage.jpg" "http://some.ip.address:5000/upload"
The curl command above returns the expected correct response in JSON.
Problem: I keep getting a HTTP 400 request which means I am doing something wrong while composing the HTTP POST Body.
What I Did: For some reference, I tried Flickr API iOS app "POST size too large!" and Objective C: How to upload image and text using HTTP POST?. But, I keep getting a HTTP 400.
I tried the ASIHttpRequest but had a different problem there (the callback never got called). But, I didn't investigate further on that since I've heard the developer has stopped supporting the library: http://allseeing-i.com/[request_release];
Could someone please help me out?