Advertisement
Guest User

Untitled

a guest
Mar 2nd, 2015
228
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.  
  2. var input = '{"code":"ok","nn":{"websites":[{"address":"http://goo.gl/TZr5Nl","alternate_id":"b05dcab07dc8a5d6da47e3c6e7424695","hashed_address":"774cbb7f265508d5f3926dc16c6999971fdaf953","referrer":"http://facebook.com","timer":10},{"address":"https://hatmuaxa111.blogspot.com/","alternate_id":"7b7f604bd17ca27712eef560c86afd83","hashed_address":"32d7eabe2178ba53d9ea37462e56871c0fcee43d","referrer":"<default>","timer":20},{"address":"https://www.youtube.com/watch?v=jD84_bN5c-s","alternate_id":"8c175f18e6b67c1f39825f1b1c9fb3c4","hashed_address":"b43e5adb130631cf2d6f34246009222c18db9828","referrer":"http://facebook.com","timer":29},{"address":"http://bit.ly/1DHjq2i","alternate_id":"3a71a1942b19b7e09759a62daf408b26","hashed_address":"3b3b818c3636023763c82141434c26b0bec40664","referrer":"<default>","timer":10},{"address":"http://adeferfre.net/primfund/primfund.html","alternate_id":"a5dbe6b1670941834c72a6a2d085758b","hashed_address":"88e7fb6074ac30da1ba90ffaba5689b5dcdb0880","referrer":"<empty>","timer":10},{"address":"http://www.travel-pondicherry.com/a-jamaica-vacation-and-five-cultural-practices-you-can-expect.html","alternate_id":"d6314441d698a7f13d05f2b0741daa70","hashed_address":"e3965ecb5f2925f82cf211469dc7b6b15a638186","referrer":"http://14326.http.cdn.softlayer.net/8014326/www.travel-pondicherry.com/","timer":10},{"address":"http://www.mensip.com/","alternate_id":"1939eb71fa8db54871ce61ddcc69c0a1","hashed_address":"970ecdacf8554f2d8e78d2c6d0349485af51590a","referrer":"http://youtube.com","timer":20},{"address":"http://www.ziddu.com/show/18139/topnews/never-forget-these-things-in-a-relationship/atnnsbfa#.VPO902cI7io.link","alternate_id":"da982dc60f811b7bc74ccf27967c703b","hashed_address":"2642c10095d2ec8408b20547efe8c28d71832c8d","referrer":"http://google.com","timer":15},{"address":"http://www.games-gl.net/tatka/hi.html","alternate_id":"cae51cbac4aa94ffbaeeae4b91827955","hashed_address":"914e03a2153f754214a89d01bc64924c2a74672d","referrer":"<empty>","timer":10},{"address":"http://n1job.eu/media/zap.html","alternate_id":"fe4989f6844bd93058a46cfeeeba8e8a","hashed_address":"0fede8556cbddd49551e10c3468e471eb20e9575","referrer":"<empty>","timer":10},{"address":"http://le.niemvuinhandoi.com/","alternate_id":"b023aeef84860c381266aa967264bbfc","hashed_address":"0f7549f191ccb57ef359f2fb691e80aa9acbfb5d","referrer":"<default>","timer":10},{"address":"http://girlgamesmix.tk/newest-games.html","alternate_id":"cdcb36aebedfe39f7c9b16bee80d29da","hashed_address":"3c642ddc2283fe9b156ffe7158088bcb99e00ad1","referrer":"<default>","timer":20},{"address":"http://www.bhsuy.com/","alternate_id":"9d37c73c0446f678f5d0311ba72fb489","hashed_address":"8307f26ec89a5d408237780b8ef2553d8d628307","referrer":"http://www.stumbleupon.com","timer":10},{"address":"http://vcaster.tv/gg/6.html","alternate_id":"61d642ccb4de027c4fdba390c7757e60","hashed_address":"d9702f42529bf59e36dd42e26646954d23e51666","referrer":"http://google.com","timer":22},{"address":"http://moneyshocked.com/best-hoa-management-companies/","alternate_id":"cbe5b84f063b2224745bf434f1cd8f77","hashed_address":"0b92e4a45d5b6ecef5e44e4c29de26ab85b9139d","referrer":"http://google.com","timer":10}]},"session_minutes_earned":"0"}';
  3.  
  4.  
  5.  
  6.  
  7.  
  8. input = JSON.parse(input);
  9. for(var i = 0; i < input.nn.websites.length; i++) {
  10.     var page = require('webpage').create();
  11.    
  12.     var address= input.nn.websites[i].address;
  13.     console.log( address);
  14.     page.open(address, function (status) {
  15.          console.log("status:" +status + address);
  16.        
  17.        
  18.        
  19.         setTimeout(function(){
  20.             phantom.exit();
  21.         }, input.nn.websites[i].timer);
  22.  
  23.     });
  24.  console.log(input.nn.websites[i].address + " " + input.nn.websites[i].timer+"000");
  25.    
  26.    
  27.         //
  28.  
  29.    
  30.    
  31.    
  32.  
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement