fork download
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. CURLOPT_URL => 'https://a...content-available-to-author-only...y.com/external/v1/candidate/report/pdf?candidate_id=22305',
  6. CURLOPT_RETURNTRANSFER => true,
  7. CURLOPT_ENCODING => '',
  8. CURLOPT_MAXREDIRS => 10,
  9. CURLOPT_TIMEOUT => 0,
  10. CURLOPT_FOLLOWLOCATION => true,
  11. CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  12. CURLOPT_CUSTOMREQUEST => 'GET',
  13. CURLOPT_HTTPHEADER => array(
  14. 'Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkYXRhIjp7ImNvbXBhbnlJZCI6MTA0NywidG9rZW5JZCI6MTM3NSwiY29tcGFueVV1aWQiOiI5OTYzMDMzMS1kMGIzLTQyNDItYTc1Zi0zZDBmOWM4ZTc0ZTMifSwiaWF0IjoxNzQyNTUzNTY3fQ.QMybDOCRkZ5WRCWYaZTBPXNLha-shZpImktVjfa9QqQ'
  15. ),
  16. ));
  17.  
  18. $response = curl_exec($curl);
  19.  
  20. curl_close($curl);
  21. echo $response;
  22.  
Success #stdin #stdout 0.04s 26568KB
stdin
Standard input is empty
stdout
Standard output is empty