Skip to content

Latest commit

 

History

History
15 lines (12 loc) · 341 Bytes

NodeJs-Request.md

File metadata and controls

15 lines (12 loc) · 341 Bytes
var request = require("request");

var options = { method: 'GET',
  url: 'https://api.storyblok.com/v1/cdn/stories/home',
  qs: { token: 'xs8KfuZGvQVOM824AFUQDQtt' },
  headers: 
   { 'cache-control': 'no-cache' } };

request(options, function (error, response, body) {
  if (error) throw new Error(error);

  console.log(body);
});