I'm trying to send a POST request to an API with an image in the request. I'm doing this with the request module but everything I try it isn't working. My current code:
const options = {
method: "POST",
url: "https://api.LINK.com/file",
port: 443,
headers: {
"Authorization": "Basic " + auth,
"Content-Type": "multipart/form-data"
},
form : {
"image" : fs.readFileSync("./images/scr1.png")
}
};
request(options, function (err, res, body) {
if(err) console.log(err);
console.log(body);
});
But request uses Content-Type: application/x-www-form-urlencoded
for some reason... How can I fix this?
As explained in documentation form
multipart/form-data
request is usingform-data
library. So you need to supplyformData
option instead ofform
option.