En modifiant le script existant avec ce contenu ci-dessous. Version précédente: ( EDF-Tempo: Couleur du lendemain - #2 par jpty )
<?php
$opts = array(
'http'=>array(
'method'=>"GET",
'header'=>array( "User-Agent: Wget/1.20.3 (linux-gnu)",
"Accept: text/html,application/xhtml+xml,application/xml;q=0.9,image/webp,*/*;q=0.8",
"Content-Type: application/json"
)
)
);
$context = stream_context_create($opts);
$resu = @file_get_contents("https://particulier.edf.fr/services/rest/referentiel/searchTempoStore?dateRelevant=" .date('Y-m-d'), false, $context);
if($resu === false || strstr($resu, "couleurJourJ") === false)
echo '{"couleurJourJ1": "Erreur Récupération","couleurJourJ": "Erreur Récupération"}';
else {
echo $resu;
}
et ce paramétrage,
Ca fonctionne:
@tomtom Merci pour la nouvelle URL.