Advertisement
SecretSupercat

Untitled

Nov 24th, 2014
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function leit(value, cb) {
  2.         //var url = "http://api.yummly.com/v1/api/recipes?_app_id=92e09229&_app_key=cac7ebbcf3c99974ba11ea55be2ad2c6&"+value;
  3.         var url= "https://notendur.hi.is/hro12/recipe.txt"
  4.        
  5.         request({
  6.             uri: url,
  7.             method: "GET",
  8.             timeout: 10000,
  9.             followRedirect: true,
  10.             maxRedirects: 10,
  11.             json: true
  12.         }, function(error, response, body) {
  13.             recipe = body;
  14.             cb(recipe);
  15.             console.log(recipe);
  16.         });
  17.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement