npmnode.js95% confidence\u2191 18

Node.js HTTP - TypeError: The header content contains invalid characters

Full error message
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();

I run this code, and I get the following error:

_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)

Cannot figure out where this error is coming from. I hear it's for security reasons in newer versions of Node but cannot figure out how to get around it.

Straight up, looks like we need to use: headers: { 'content-type': 'application/json', }, instead of headers: { 'Content-Type': 'application/json', }, these types of vague error messages make me sad!

API access

Get this solution programmatically \u2014 free, no authentication.

curl https://depscope.dev/api/error/628f058854f5a3932b9bf7692b484473ee7b3bf86c7e3cc79951a4a159b9199d
hash \u00b7 628f058854f5a3932b9bf7692b484473ee7b3bf86c7e3cc79951a4a159b9199d
Node.js HTTP - TypeError: The header content contains invali… — DepScope fix | DepScope