web-dev-qa-db-fra.com

Obtenir un objet JSON à partir d'une URL

J'ai une URL qui retourne un objet JSON comme ceci:

{
    "expires_in":5180976,
    "access_token":"AQXzQgKTpTSjs-qiBh30aMgm3_Kb53oIf-VA733BpAogVE5jpz3jujU65WJ1XXSvVm1xr2LslGLLCWTNV5Kd_8J1YUx26axkt1E-vsOdvUAgMFH1VJwtclAXdaxRxk5UtmCWeISB6rx6NtvDt7yohnaarpBJjHWMsWYtpNn6nD87n0syud0"
} 

Je veux obtenir la valeur access_token. Alors, comment puis-je le récupérer via PHP?

114
user2199343
$json = file_get_contents('url_here');
$obj = json_decode($json);
echo $obj->access_token;

Pour que cela fonctionne, file_get_contents requiert que allow_url_fopen soit activé. Cela peut être fait au moment de l'exécution en incluant:

ini_set("allow_url_fopen", 1);

Vous pouvez également utiliser curl pour obtenir l'URL. Pour utiliser curl, vous pouvez utiliser l'exemple trouvé ici :

$ch = curl_init();
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;
305
Prisoner
$url = 'http://.../.../yoururl/...';
$obj = json_decode(file_get_contents($url), true);
echo $obj['access_token'];

PHP peut également utiliser des propriétés avec des tirets:

garex@ustimenko ~/src/ekapusta/deploy $ psysh
Psy Shell v0.4.4 (PHP 5.5.3-1ubuntu2.6 — cli) by Justin Hileman
>>> $q = new stdClass;
=> <stdClass #000000005f2b81c80000000076756fef> {}
>>> $q->{'qwert-y'} = 123
=> 123
>>> var_dump($q);
class stdClass#174 (1) {
  public $qwert-y =>
  int(123)
}
=> null
23
gaRex

Vous pouvez utiliser la fonction json_decode de PHP:

$url = "http://urlToYourJsonFile.com";
$json = file_get_contents($url);
$json_data = json_decode($json, true);
echo "My token: ". $json_data["access_token"];
13
netblognet
// Get the string from the URL
$json = file_get_contents('https://maps.googleapis.com/maps/api/geocode/json?latlng=40.714224,-73.961452');

// Decode the JSON string into an object
$obj = json_decode($json);

// In the case of this input, do key and array lookups to get the values
var_dump($obj->results[0]->formatted_address);
7
Toqeer Ahmed

Vous devez en savoir plus sur la fonction json_decode http://php.net/manual/en/function.json-decode.php

Voici

$json = '{"expires_in":5180976,"access_token":"AQXzQgKTpTSjs-qiBh30aMgm3_Kb53oIf-VA733BpAogVE5jpz3jujU65WJ1XXSvVm1xr2LslGLLCWTNV5Kd_8J1YUx26axkt1E-vsOdvUAgMFH1VJwtclAXdaxRxk5UtmCWeISB6rx6NtvDt7yohnaarpBJjHWMsWYtpNn6nD87n0syud0"}';
//OR $json = file_get_contents('http://someurl.dev/...');

$obj = json_decode($json);
var_dump($obj-> access_token);

//OR 

$arr = json_decode($json, true);
var_dump($arr['access_token']);
6
Nick
$ch = curl_init();
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;
3
Ya-Ze Lin

file_get_contents() n'extrait pas les données de l'URL, alors j'ai essayé curl et tout fonctionne correctement.

2
Firdous bhat

ma solution ne fonctionne que dans les cas suivants: si vous confondez un tableau multidimensionnel en un seul

$json = file_get_contents('url_json'); //get the json
$objhigher=json_decode($json); //converts to an object
$objlower = $objhigher[0]; // if the json response its multidimensional this lowers it
echo "<pre>"; //box for code
print_r($objlower); //prints the object with all key and values
echo $objlower->access_token; //prints the variable

je sais que la réponse a déjà été donnée, mais pour ceux qui sont venus chercher quelque chose ici, j'espère que cela pourra vous aider

1

Lorsque vous utilisez curl, donnez-vous parfois 403 (accès interdit) Résolu en ajoutant cette ligne pour émuler le navigateur.

curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.0.3705; .NET CLR 1.1.4322)');

J'espère que cela aidera quelqu'un.

0
jamal arradi

Notre solution, en ajoutant quelques validations à la réponse afin que nous soyons sûrs que nous avons un objet json bien formé dans $ json variable

$ch = curl_init();
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_URL, $url);
$result = curl_exec($ch);
curl_close($ch);
if (! $result) {
    return false;
}

$json = json_decode(utf8_encode($result));
if (empty($json) || json_last_error() !== JSON_ERROR_NONE) {
    return false;
}
0
Raul Sanchez