Skip to content

Instantly share code, notes, and snippets.

@simong
Created August 29, 2013 09:09
Show Gist options
  • Select an option

  • Save simong/6375887 to your computer and use it in GitHub Desktop.

Select an option

Save simong/6375887 to your computer and use it in GitHub Desktop.
var https = require('https');
var url = require('url');
//var endpoint = 'https://oae.gatech.edu';
var endpoint = 'https://www.incommon.org';
var options = url.parse(endpoint);
options.method = 'GET';
https.get(options, function() {
console.log(arguments);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment