Php file_get_contents veri çekme problemi
Merhabalar aşağıda bulunan kod parçaçığı ile localhost üzerinden sorunsuz olarak çektiğim veriyi sunucu üzerinde çekmeye çalıştığımda
"Warning: file_get_contents(https : //ebayi.tjk.org/s/d/program/20210807/yarislar.json): failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request in" hatasını almaktayım bunu nasıl aşabilirim bir yolu varmıdır acaba ?
date_default_timezone_set('Europe/Istanbul');
$tarih=date("Ymd");
$veri = file_get_contents("https://ebayi.tjk.org/s/d/program/" .$tarih."/yarislar.json",0,stream_context_create(["http"=>["timeout"=>60]]));
$dizi = json_decode($veri, true);