Question:
I'm trying to find the right syntax to post an image file to Parse.com using Chilkat.http. Below is the sample code from the Parse.com site.
curl -X POST -H "X-Parse-Application-Id: ${APPLICATION_ID}" -H "X-Parse-REST-API-Key: ${REST_API_KEY}" -H "Content-Type: image/jpeg" --data-binary '@myPicture.jpg' https://api.parse.com/1/files/pic.jpg
Anyone have experience doing this sort of thing?