Bir çerez ayarlamak için PHP json_decode

0 Cevap php

Ben Json WebService döndü, Ve ben bir sonraki WebService apı'sini kullanmak istediğiniz, bir çerez ayarlamak gerekir çözmek istiyoruz. Ben bir cookie ve bu json çözmek için nasıl emin değilim.

Bunu çözme denedim ama hata alıyorum. Ben OturumKimliği ayıklamak gerekir. Sen WebService kullanabilirsiniz .. Ben internette bu koyduk.

İşte benim kod örneği

 <?php //extract data from the post
       extract($_POST); //set POST variables
       $url = 'http://202.83.243.119/ems/loginByEID.json';
       $fields = array(
                   'eid'=>urlencode("7ea888b6-36e9-49db-84f3-856043841bef")
               );
      //url-ify the data for the POST
       foreach($fields as $key=>$value) {
       $fields_string .=
       $key.'='.$value.'&'; }
       rtrim($fields_string,'&');

       //open connection $ch = curl_init();

       //set the url, number of POST vars,
       POST data
       curl_setopt($ch,CURLOPT_URL,$url);
       curl_setopt($ch,CURLOPT_POST,count($fields));
       curl_setopt($ch,CURLOPT_POSTFIELDS,$fields_string);

       //execute post $result =
       curl_exec($ch);

       //close connection curl_close($ch);  
       //decoding Json $obj =
       json_decode($result);

       print $obj->{'stat'};  

       ?>

0 Cevap