URL에서 JSON 개체 가져오기
다음과 같은 JSON 개체를 반환하는 URL이 있습니다.
{
"expires_in":5180976,
"access_token":"AQXzQgKTpTSjs-qiBh30aMgm3_Kb53oIf-VA733BpAogVE5jpz3jujU65WJ1XXSvVm1xr2LslGLLCWTNV5Kd_8J1YUx26axkt1E-vsOdvUAgMFH1VJwtclAXdaxRxk5UtmCWeISB6rx6NtvDt7yohnaarpBJjHWMsWYtpNn6nD87n0syud0"
}
URL에서 JSON 오브젝트를 취득하고 나서access_token
가치.
그럼 어떻게 하면 PHP를 통해 취득할 수 있을까요?
$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);
를 사용하여 URL을 가져올 수도 있습니다.컬을 사용하려면 다음 예제를 사용합니다.
$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;
$url = 'http://.../.../yoururl/...';
$obj = json_decode(file_get_contents($url), true);
echo $obj['access_token'];
Php는 대시와 함께 속성을 사용할 수도 있습니다.
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
PHP의 json_decode 함수를 사용할 수 있습니다.
$url = "http://urlToYourJsonFile.com";
$json = file_get_contents($url);
$json_data = json_decode($json, true);
echo "My token: ". $json_data["access_token"];
json_http://http://php.net/manual/en/function.json-decode.php 함수에 대해 읽어보십시오.
여기 있어요.
$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']);
// 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);
$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;
file_get_contents()
url에서 데이터를 가져오지 않아서 시도했습니다.curl
잘 되고 있어요.
우리의 솔루션은 응답에 몇 가지 검증을 추가함으로써 $json 변수에 제대로 형성된 json 개체가 있음을 확신한다.
$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;
}
내 솔루션은 다음 경우에만 작동한다: 멀티멘션 어레이를 단일 어레이로 오인하는 경우
$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
이미 답이 나왔다는 것을 알지만, 무언가를 찾고 있는 이들에게는 이것이 당신에게 도움이 될 수 있기를 바랍니다.
사용하고 있을 때curl
경우에 따라서는 403(액세스 금지)이 행을 에뮬레이트 브라우저에 추가하여 해결됩니다.
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)');
이게 도움이 됐으면 좋겠네요.
$curl_handle=curl_init();
curl_setopt($curl_handle, CURLOPT_URL,'https://www.xxxSite/get_quote/ajaxGetQuoteJSON.jsp?symbol=IRCTC&series=EQ');
//Set the GET method by giving 0 value and for POST set as 1
//curl_setopt($curl_handle, CURLOPT_POST, 0);
curl_setopt($curl_handle, CURLOPT_CUSTOMREQUEST, "GET");
curl_setopt($curl_handle, CURLOPT_CONNECTTIMEOUT, 2);
curl_setopt($curl_handle, CURLOPT_RETURNTRANSFER, 1);
$query = curl_exec($curl_handle);
$data = json_decode($query, true);
curl_close($curl_handle);
//print complete object, just echo the variable not work so you need to use print_r to show the result
echo print_r( $data);
//at first layer
echo $data["tradedDate"];
//Inside the second layer
echo $data["data"][0]["companyName"];
405를 얻을 수 있는 경우는, 메서드 타입을 올바르게 설정합니다.
언급URL : https://stackoverflow.com/questions/15617512/get-json-object-from-url
'source' 카테고리의 다른 글
Java에서 toString 메서드를 사용하는 방법 (0) | 2022.12.08 |
---|---|
MySQL과 null 값 비교 (0) | 2022.12.08 |
스프링 데이터 저장소는 실제로 어떻게 구현됩니까? (0) | 2022.12.08 |
pyenv, virtualenv, anaconda의 차이점은 무엇입니까? (0) | 2022.12.08 |
사용자 역할에 따라 1개의 루트에 대해 다른 뷰를 로드하는 방법이 있습니까? (0) | 2022.12.08 |