-
-
Save SunboX/882547660bea86d280d7 to your computer and use it in GitHub Desktop.
Revisions
-
There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,18 @@ 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 });