$json = file_get_contents('url_here');
$obj = json_decode($json);
echo $obj->access_token;
이것이 작동 file_get_contents
하려면 allow_url_fopen
활성화되어 있어야합니다 . 다음을 포함하여 런타임시 수행 할 수 있습니다.
ini_set("allow_url_fopen", 1);
curl
URL을 얻는 데 사용할 수도 있습니다 . curl을 사용하려면 다음 예제를 사용할 수 있습니다 .
$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;
json_decode($your_string)
트릭을 수행해야합니다