fork download
  1. <?php
  2. $ch = curl_init();
  3. curl_setopt($ch, CURLOPT_URL, 'https://k...content-available-to-author-only...k.com/api/v2/channels/touken/users/narkobijec');
  4. curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  5. curl_setopt($ch, CURLOPT_CUSTOMREQUEST, 'GET');
  6. curl_setopt($ch, CURLOPT_HTTPHEADER, [
  7. 'Host: kick.com',
  8. 'User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64; rv:128.0) Gecko/20100101 Firefox/128.0',
  9. ]);
  10. curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);
  11.  
  12. $response = curl_exec($ch);
  13.  
  14. echo $response;
  15.  
Success #stdin #stdout 0.03s 26504KB
stdin
Standard input is empty
stdout
Standard output is empty