Skip to content

Instantly share code, notes, and snippets.

@cojohn
Created February 8, 2012 18:53
Show Gist options
  • Star 9 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save cojohn/1772154 to your computer and use it in GitHub Desktop.
Save cojohn/1772154 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