从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年

Answers:


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获取网址。要使用卷曲,可以使用中发现的例子在这里

$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
中将

1
@ user2199343如果要将结果用作数组,请在json_decode函数中使用“,true”。例如,请参阅我的答案。
netblognet 2013年

file_get_contents('url'); 涉及此错误
2013年

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 2015年

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 2014年

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

对于代码和解释性注释,更喜欢使用代码块格式,尤其是在代码没有直接直接回答问题的情况下(在这种情况下,存在不同的键名称等)
elliot42

7

您需要阅读有关json_decode函数的信息http://php.net/manual/zh/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

2

file_get_contents()没有从URL中获取数据,然后我尝试了curl,它工作正常。


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,请正确设置方法类型。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.