“Holen Sie sich JSON von URL PHP” Code-Antworten

Holen Sie sich JSON von URL PHP

$url = "http://urlToYourJsonFile.com";
$json = file_get_contents($url);
$json_data = json_decode($json, true);
echo "My token: ". $json_data["access_token"];
Andrew Lautenbach

Wert Wert von JSON Link in PHP

$ch = curl_init();
// IMPORTANT: the below line is a security risk, read https://paragonie.com/blog/2017/10/certainty-automated-cacert-pem-management-for-php-software
// in most cases, you should set it to true
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, 'url_here');
$result = curl_exec($ch);
curl_close($ch);

$obj = json_decode($result);
echo $obj->access_token;
Ankur

Ähnliche Antworten wie “Holen Sie sich JSON von URL PHP”

Fragen ähnlich wie “Holen Sie sich JSON von URL PHP”

Weitere verwandte Antworten zu “Holen Sie sich JSON von URL PHP” auf PHP

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen