fork download
  1. <?php
  2. $curl = curl_init();
  3.  
  4. CURLOPT_URL => "https://n...content-available-to-author-only...k.in/api/v2/credits",
  5. CURLOPT_RETURNTRANSFER => true,
  6. CURLOPT_HTTPHEADER => array(
  7. "Authorization: Bearer 8F384E4E7DB0",
  8. "Content-Type: application/json"
  9. )
  10. ));
  11.  
  12. $response = curl_exec($curl);
  13. curl_close($curl);
  14.  
  15. echo $response;
  16. ?>
  17.  
Success #stdin #stdout 0.04s 25964KB
stdin
Standard input is empty
stdout
Standard output is empty