const http = require('http');
const req = http.request({
method: 'POST',
hostname: 'cloudsso‐test.myco.com',
port: 80,
path: '/as/token.oauth2',
headers: {
'Content-Type': 'application/json',
},
agent: false // create a new agent just for this one request
}, function (res) {
res.on('headers', function (h) {
console.log('headers => ', h);
});
let data = '';
res.on('data', function (d) {
data += d;
});
res.once('end', function () {
console.log('data => ', data);
});
});
req.write(JSON.stringify({
client_id: 'xxx',
client_secret: 'secret',
grant_type: 'refresh_token',
}));
req.end();
このコードを実行すると、次のエラーが発生します。
_http_outgoing.js:358
throw new TypeError('The header content contains invalid characters');
^
TypeError: The header content contains invalid characters
at ClientRequest.OutgoingMessage.setHeader (_http_outgoing.js:358:11)
at new ClientRequest (_http_client.js:105:12)
at Object.exports.request (http.js:31:10)
at Object.<anonymous> (/Users/alexamil/WebstormProjects/Cisco/cdt-now/test/refresh-token.js:9:18)
at Module._compile (module.js:570:32)
at Object.Module._extensions..js (module.js:579:10)
at Module.load (module.js:487:32)
at tryModuleLoad (module.js:446:12)
at Function.Module._load (module.js:438:3)
at Module.runMain (module.js:604:10)
このエラーの原因を特定できません。 Nodeの新しいバージョンではセキュリティ上の理由によると聞いていますが、どうすれば回避できるかわかりません。
まっすぐに、私たちが使用する必要があるように見えます:
headers: {
'content-type': 'application/json',
},
の代わりに
headers: {
'Content-Type': 'application/json',
},
これらのタイプのあいまいなエラーメッセージは私を悲しくさせます!
承認用のjwtトークンを生成していて、改行文字を挿入するという同様の問題がありました。それらをtoken.replace(/\r?\n|\r/g, '')
で置き換えるとうまくいきました。
それは理由ではありません。それはあなたのダッシュが標準のダッシュではないからです:
> /-/.test('cloudsso‐test.myco.com')
false
> /‐/.test('cloudsso‐test.myco.com')
true
私は同じエラーメッセージに直面しました。判明-その応答cookieヘッダーには SOH ASCII command) => \u0001
が含まれています:
'set-cookie': [ 'someCookieName=rHA\u0001sBlP; path=/; Max-Age=900' ],
したがって、各ヘッダーを書き換える必要がありました。
Object.entries(headers).forEach(([key, value]) => {
delete headers[key];
if (Array.isArray(value)) {
headers[key] = value.map(v => v.replace(/[\x01]/g, ''));
} else {
headers[key] = value.replace(/[\x01]/g, '');
}
})