Skip to content

Instantly share code, notes, and snippets.

@SunboX
Forked from cojohn/basic-http-auth-node.js
Last active May 1, 2023 19:02
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save SunboX/882547660bea86d280d7 to your computer and use it in GitHub Desktop.
Save SunboX/882547660bea86d280d7 to your computer and use it in GitHub Desktop.
Basic HTTP Authorization Header in Node.js
var key = <my key>,
secret = <my secret>,
https = require("https"),
https_options = {
"host": <host>,
"path": <path>,
"port": <port>,
"method": <method>,
"headers": {
"Authorization": "Basic " + new Buffer(key + ":" + secret, "utf8").toString("base64")
}
},
request = https.request(https_options, function(response) {
// Handle response
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment