URL'den JSON nesnesi alma


146

Ben böyle bir JSON nesnesi döndüren bir URL var:

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

access_tokenDeğeri almak istiyorum . Peki PHP ile nasıl alabilirim?


1
json_decode($your_string)hile yapmak gerekir
d4rkpr1nc3

Yanıtlar:


359
$json = file_get_contents('url_here');
$obj = json_decode($json);
echo $obj->access_token;

İşe Bunun için file_get_contentsgerektirir allow_url_fopenetkindir. Bu, çalışma zamanında aşağıdakiler dahil edilerek yapılabilir:

ini_set("allow_url_fopen", 1);

curlURL'yi almak için de kullanabilirsiniz . Kıvrımı kullanmak için, burada bulunan örneği kullanabilirsiniz :

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

Maalesef ilk önce bu dizeyi url'den nasıl alabilirim ve sonra json nesnesine erişirim?
user2199343

Hata bu satıra geldi echo $ obj ['access_token']; Önemli hata: 22
satırdaki

1
@ user2199343 Sonucu dizi olarak kullanmak istiyorsanız, json_decode işlevinde ", true" kullanın. Örneğin cevabıma bakın.
netblognet

file_get_contents ( 'URL'); Buna ilişkin bir hata var
user2199343 25:13

1
çalışma zamanında ini_set("allow_url_fopen", 1);etkinleştirmek allow_url_fopeniçin bu satırı en üste koyabilirsiniz .
Cԃ ա ԃ

25
$url = 'http://.../.../yoururl/...';
$obj = json_decode(file_get_contents($url), true);
echo $obj['access_token'];

Php ayrıca tire ile özellikleri kullanabilirsiniz:

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
Ben sadece cevaplanmış json çizgi karakteri ex: {"tam adı": "khalil", "aile adı": "ne olursa olsun" dizini tutacak 1 nedenle seçilen cevap bu cevabı tercih ediyorum taraftasınız
Khalil Awada

17

PHP'nin json_decode işlevini kullanabilirsiniz :

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

İyi örnek ama o yöntemi denir json_decodedeğil $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);

Özellikle kod soruyu doğrudan yanıtlamıyorsa (bu durumda farklı anahtar adları vb. Varsa), kod için kod bloğu biçimlendirmesini ve açıklayıcı yorumları tercih edin
elliot42

7

Json_decode işlevi hakkında http://php.net/manual/en/function.json-decode.php adresini okumalısınız.

Hadi bakalım

$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'a hoş geldiniz! Bu soru zaten birden çok kez cevaplandı! Lütfen bazı kodları dökmek yerine cevabınızın nasıl farklı olduğunu ve diğerlerini nasıl geliştirdiğini açıklayın.
T3 H40

2

file_get_contents()url'den veri almıyor, sonra denedim curlve iyi çalışıyor.


1

benim çözümüm yalnızca aşağıdaki durumlar için çalışır: çok boyutlu bir diziyi tek bir dizide yanlış kullanıyorsanız

$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

Cevabın zaten cevaplanmış olduğunu biliyorum ama buraya gelenler için bir şeyler arıyorum umarım bu size yardımcı olabilir


0

Kullanırken curlbazen size 403 (erişim yasak) verin Tarayıcıyı taklit etmek için bu satırı ekleyerek çözüldü.

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

Umarım bu birine yardım eder.


0

Çözümümüz, yanıt için bazı doğrulamalar ekleyerek $ json değişkeninde iyi oluşturulmuş bir json nesnesine sahip olduğumuzdan eminiz

$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"];

Bir süre 405 alabilirsiniz, yöntem türünü doğru ayarlayın.

Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.