fork download
  1. <?php
  2.  
  3. $curl = curl_init();
  4.  
  5. CURLOPT_URL => 'https://d...content-available-to-author-only...v.com/recruitment/levels/',
  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 => 'POST',
  13. CURLOPT_HTTPHEADER => array(
  14. 'Content-Type: application/json',
  15. 'Authorization: Bearer 4f03a3d7d3dffa764d27606ff3773311'
  16. ),
  17. ));
  18.  
  19. $response = curl_exec($curl);
  20.  
  21. curl_close($curl);
  22. echo $response;
  23.  
Success #stdin #stdout 0.03s 26260KB
stdin
Standard input is empty
stdout
Standard output is empty