Created
February 8, 2012 18:53
-
-
Save cojohn/1772154 to your computer and use it in GitHub Desktop.
Basic HTTP Authorization Header in Node.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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