Node.jsのリクエストモジュールを使用して、putリクエストを実行しています。私のコードはこんな感じ
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);
});
これを実行すると、エラーが発生します。
「タイプがapplication/jsonのサポートされていないコンテンツ」
次のように試してください:
request({ url: url, method: 'PUT', json: {foo: "bar", woo: "car"}}, callback)