Yii2通過curl調用json-rpc介面

來源:互聯網
上載者:User

標籤:bsp   exe   err   erro   json-rpc   初始化   order   error   error:   

Yii2可以通過json-rpc為前端提供介面資料,通常情況睛會使用非同步形式調用介面,有時也會使用curl調用介面資料。

一、非同步呼叫json-rpc介面

 

$.ajax({                type: ‘POST‘,                url: "http://localhost/index?r=test",                xhrFields: {withCredentials: true},                data: JSON.stringify([{                    jsonrpc: "2.0",                    method: "order-list",                    params: {id: 3},                     id: "1"                }]),                success: function(res){                    console.log(res);                                   },                dataType: "json",                contentType: "application/json-rpc",                error: function(){}            });

 分析:json-rpc非同步請求介面與普通的ajax非同步請求相比,主要在於其設定了請求的content-type,傳遞的參數中包含了幾個欄位,jsonrpc method params id,知道了這些,我們通過設定curl的選項與參數,來類比jsonrpc請求。

二、crul請求josnrpc介面
#請求的url$url = ‘http://localhost/index.php?r=test; //參數是為了防止緩衝#請求參數,如果想一次調用多個介面,data設定成二維資料即可/*$data1 = [  [  ‘jsonrpc‘ => ‘2.0‘,  ‘method‘ => ‘test1‘,  ‘id‘ => 0,  ‘params‘ => [‘id‘ => ‘3‘]  ],  [  ‘jsonrpc‘ => ‘2.0‘,  ‘method‘ => ‘test2‘,  ‘id‘ => 0,  ‘params‘ => [‘id‘ => ‘3‘]  ],  ];*/$data = [  ‘jsonrpc‘ => ‘2.0‘,  ‘method‘ => ‘test1‘,  ‘id‘ => 0,  ‘params‘ => [‘id‘ => ‘3‘]];#curl初始化$ch = curl_init();#請求參數設定$options = array(  CURLOPT_URL => $url,  CURLOPT_USERAGENT => "Mozilla/5.0 (Windows NT 6.1; rv:12.0) Gecko/20100101 Firefox/12.0",  CURLOPT_RETURNTRANSFER => 1,  CURLOPT_HTTPHEADER => Array("Content-Type: application/json-rpc"));curl_setopt_array($ch, $options);#JSON資料curl_setopt($ch, CURLOPT_POSTFIELDS, json_encode($data));#發送請求並接收返回資訊$html=curl_exec($ch); #擷取請求的詳細資料 用於調試,可以沒有$info = curl_getinfo($ch); curl_close($ch);#列印返回資料var_dump($html);die;

 

Yii2通過curl調用json-rpc介面

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.