URLからJSONオブジェクトを取得する


146

次のようなJSONオブジェクトを返すURLがあります。

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

access_token値を取得したいです。では、どうすればPHPから取得できますか?


1
json_decode($your_string)トリックを行う必要があります
d4rkpr1nc3 2013年

回答:


358
$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;

申し訳ありませんが、最初にURLからこの文字列を取得し、次にjsonオブジェクトにアクセスするにはどうすればよいのかを忘れていました。
user2199343 2013年

この行でエラーが発生しましたecho $ obj ['access_token']; 致命的エラー:行22のF:\ wamp \ www \ sandbox \ linkedin \ test.phpの配列としてstdClassタイプのオブジェクトを使用できません
user2199343

1
@ user2199343結果を配列として使用する場合は、json_decode関数で "、true"を使用します。例えば私の答えを見てください。
netblognet 2013年

file_get_contents( 'url'); これを参照するとエラーが発生します
user2199343 '25 / 03/25

1
この行を先頭に配置ini_set("allow_url_fopen", 1);してallow_url_fopen、実行時に有効にすることができます。
Cԃաԃ

25
$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

1
1つの理由で、選択した回答よりもこの回答を好むと思います。解析されたjsonにのみダッシュ文字を含むインデックスを含めることができますex:{"full-name": "khalil"、 "familiy-name": "whatever"}配列が保持するため安全のために
Khalil Awada

17

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_decodenot と呼ばれてい$json_decodeます。
czerasz 14年

8
// 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

json_decode関数について読む必要があります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']);

3
$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;

2
StackOverflowへようこそ!この質問はすでに複数回回答されています!単にいくつかのコードをダンプするのではなく、あなたの答えがどのように異なり、他のものを改善するかについて詳しく説明してください。
T3 H40 2016年


1

私の解決策は次の場合にのみ機能します:多次元配列を単一のものに間違えている場合

$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

私は答えがすでに答えられたことを知っていますが、何かを探してここに来た人のためにこれがあなたを助けることを願っています


0

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)');

これが誰かを助けることを願っています。


0

私たちのソリューションは、応答にいくつかの検証を追加して、$ 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;
}

0
$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を取得することがありますが、メソッドタイプを正しく設定してください。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.