fork download
  1. <?php
  2. $url = "https://k...content-available-to-author-only...k.com/api/v2/channels/touken/users/biely_cernoch";
  3.  
  4. $options = [
  5. "http" => [
  6. "method" => "GET",
  7. "header" => "Accept: application/json\r\n" .
  8. "User-Agent: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/134.0.0.0 Safari/537.36\r\n"
  9. ]
  10. ];
  11.  
  12. $context = stream_context_create($options);
  13. $response = file_get_contents($url, false, $context);
  14.  
  15. if ($response === false) {
  16. die("Error fetching data");
  17. }
  18.  
  19. echo $response;
  20. ?>
Success #stdin #stdout #stderr 0.02s 26224KB
stdin
Standard input is empty
stdout
Error fetching data
stderr
PHP Warning:  file_get_contents(): php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /home/4REtaq/prog.php on line 13
PHP Warning:  file_get_contents(https://k...content-available-to-author-only...k.com/api/v2/channels/touken/users/biely_cernoch): failed to open stream: php_network_getaddresses: getaddrinfo failed: Temporary failure in name resolution in /home/4REtaq/prog.php on line 13