Im currently working with some kind of API. I have wrote simple functions which allows me to add new content, however Im stuck on uploading images.
Here\'s simple CURL c
I have the same problem and found a solution but only for single images. The trick is that your array MUST look like these:
$images = array( 'image' => 'PATH/IMG.jpg', );
That means that the the key must be "image" and nothing other! I hope that helps ;)