Home > Enterprise >  Node.js https GET request with custom CA chain
Node.js https GET request with custom CA chain

Time:03-14

I'm trying to make simple GET request from my university schedule website. This is the URL enter image description here

CodePudding user response:

Just simply add to the top of your js file

process.env["NODE_TLS_REJECT_UNAUTHORIZED"] = "0";
  • Related