Skip to content

Instantly share code, notes, and snippets.

@dorman99
Forked from JacobHsu/postjson.js
Created May 17, 2018 04:53
Show Gist options
  • Save dorman99/e5dbd1b71d9e4d483abc495bea308f11 to your computer and use it in GitHub Desktop.
Save dorman99/e5dbd1b71d9e4d483abc495bea308f11 to your computer and use it in GitHub Desktop.
#nodejs #npm - post json with node.js (npm request )
var request = require('request');
var options = {
uri: 'https://www.googleapis.com/urlshortener/v1/url',
method: 'POST',
json: {
"longUrl": "http://www.google.com/"
}
};
request(options, function (error, response, body) {
if (!error && response.statusCode == 200) {
console.log(body.id) // Print the shortened url.
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment