GLADzTeguhID

Script Bot Auto Like Timeline LINE

Feb 9th, 2017
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.91 KB | None | 0 0
  1. <?php
  2.  
  3. /*
  4.  *  Build with LOVE in Jakarta
  5.  *
  6.  *  fadhiilrachman@gmail.com - Fadhiil Rachman
  7.  *  reshared by LagiHITZ.com
  8.  */
  9.  
  10. header("Content-Type: text/plain");
  11.  
  12. // Hapus bagian ini bila terjadi error, Use at your own risk !!
  13. ini_set('max_execution_time', '-1');
  14. ini_set('memory_limit', '-1');
  15. ///////////////////////////////////////////////////////////////////////////////
  16. $cookie="YOUR_COOKIE_HERE";
  17. ////
  18. $limit=10;
  19.  
  20. $param=[
  21.     "cookie"    =>  $cookie,
  22.     "limit"     =>  $limit,
  23. ];
  24. $url="https://api.fadhiilrachman.id/line/likeTimeline.php";
  25. $curl = curl_init();
  26. curl_setopt_array($curl, array(
  27.     CURLOPT_URL             => $url . ( $param ? '?'.http_build_query($param) : ''),
  28.     CURLOPT_RETURNTRANSFER  => 1,
  29.     CURLOPT_VERBOSE         => 0,
  30.     CURLOPT_SSL_VERIFYHOST  => 0,
  31.     CURLOPT_SSL_VERIFYPEER  => 0
  32. ));
  33. $data = curl_exec($curl);
  34. if(!$data) {
  35.     die('cUrl has been crashed');
  36.     return ;
  37. }
  38. print $data;
  39. curl_close($curl);
  40. ?>
Add Comment
Please, Sign In to add comment