Question

I am using the request module in Node.js to do a put request. My code looks like this

var request = require('request');
var data = {foo: "bar", woo: "car"};

request({
   method: 'PUT',
   uri: myURL,
   multipart: [{
       'content-type':'application/json',
       body: JSON.stringify(data) 
   }]
}, function(error, request, body){
   console.log(body);
});

When I run this I get an error:

"Unsupported content with type: application/json"

Was it helpful?

Solution

Just try it like this:

request({ url: url, method: 'PUT', json: {foo: "bar", woo: "car"}}, callback)

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top