รับวัตถุ JSON จาก URL


146

ฉันมี URL ที่ส่งคืนวัตถุ JSON เช่นนี้:

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

ฉันต้องการได้รับaccess_tokenค่า ดังนั้นฉันจะดึงมันผ่าน PHP ได้อย่างไร?


1
json_decode($your_string)ควรทำเคล็ดลับ
d4rkpr1nc3

คำตอบ:


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

ข้อผิดพลาดมาในบรรทัดนี้ echo $ obj ['access_token']; ข้อผิดพลาดร้ายแรง: ไม่สามารถใช้วัตถุประเภท stdClass เป็นอาร์เรย์ใน F: \ wamp \ www \ sandbox \ linkedin \ test.php ในบรรทัดที่ 22
user2199343

1
@ user2199343 หากคุณต้องการใช้ผลลัพธ์เป็นอาร์เรย์ให้ใช้ ", true" ในฟังก์ชัน json_decode ดูคำตอบของฉันเช่น
netblognet

file_get_contents ( 'URL'); มีข้อผิดพลาดในการอ้างถึงสิ่งนี้
user2199343

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
ฉันต้องการคำตอบนี้ในคำตอบที่เลือกด้วยเหตุผลเดียวที่ json แยกวิเคราะห์สามารถมีดัชนีที่มีตัวละครรีบอดีต: {"ชื่อเต็ม": "khalil", "familiy ชื่อ": "อะไรก็ตาม"} ถอดรหัสเป็นอาร์เรย์จะเก็บ คุณอยู่ในที่ปลอดภัย
คาลิลอาวาดะ

17

คุณสามารถใช้ฟังก์ชันjson_decodeของ PHP :

$url = "http://urlToYourJsonFile.com";
$json = file_get_contents($url);
$json_data = json_decode($json, true);
echo "My token: ". $json_data["access_token"];

ตัวอย่างที่ดี แต่วิธีที่เขาเรียกว่าไม่json_decode $json_decode
czerasz

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


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.