1. 程式人生 > >解決在TP5中無法使用快遞鳥的即時查詢API

解決在TP5中無法使用快遞鳥的即時查詢API

type new -type %s json 代碼 文件操作 author post

快遞鳥的接口對接其實很簡單,先去官網註冊賬號,登陸把基本信息填好,然後在產品管理中訂購一下“物流查詢”,免費,不過其他產品是收費,免費的有對接口調用頻率限制,結合自己的應用流量夠用就可以。

技術分享圖片

使用前復制一下賬號下的用戶ID和API key,並且快遞鳥對各個API提供了各種語言的demo,其實下載下來,找一下平時寄快遞的運單號,本地運行一下就能用了。(名稱: KdApiSearchDemo)

技術分享圖片

技術分享圖片

技術分享圖片

其實拿到demo代碼,可以放到項目中,因為demo是以面向過程寫的,所以為了方便自然就想封裝一下。

<?php

namespace data\extend;

use data\service\Config;

/**

 * 快遞鳥即時查詢接口

 * @author Administrator

 *

 */

class Kdniao{

    private $ebusinessid;//商戶ID

    private $appkey;     //商戶秘鑰

    private $request_type;//請求類型

    private $request_url; //請求URL

    /**

     * 構造函數

    */

    public function __construct($shop_id){

        $config=new Config();

        $express_config=$config->getOrderExpressMessageConfig($shop_id);

        $is_use=$express_config[‘is_use‘];

        if($is_use==0){

            $this->ebusinessid = ‘niushop‘;

            $this->appkey = ‘niushop‘;

        }else{

            $this->ebusinessid = $express_config["value"]["appid"];

            $this->appkey = $express_config["value"]["appkey"];

        }

        $this->request_type = 1002;

        $this->request_url = ‘http://api.kdniao.cc/Ebusiness/EbusinessOrderHandle.aspx‘;

    }

    

    

    //---------------------------------------------

    /**

     * Json方式 查詢訂單物流軌跡

     */

    public function getOrderTracesByJson($requestData){

        //$requestData= "{‘OrderCode‘:‘‘,‘ShipperCode‘:‘YTO‘,‘LogisticCode‘:‘12345678‘}";

        $datas = array(

            ‘EBusinessID‘ => $this->ebusinessid,

            ‘RequestType‘ => $this->request_type,

            ‘RequestData‘ => urlencode($requestData) ,

            ‘DataType‘ => ‘2‘,

        );

        $datas[‘DataSign‘] = $this->encrypt($requestData, $this->appkey);

        $result=$this->sendPost($this->request_url, $datas);

        //根據公司業務處理返回的信息......

        return $result;

    }

    

    /**

     *  post提交數據

     * @param  string $url 請求Url

     * @param  array $datas 提交的數據

     * @return url響應返回的html

     */

    public function sendPost($url, $datas) {

        $temps = array();

        foreach ($datas as $key => $value) {

            $temps[] = sprintf(‘%s=%s‘, $key, $value);

        }

        $post_data = implode(‘&‘, $temps);

        $url_info = parse_url($url);

        if(empty($url_info[‘port‘]))

        {

            $url_info[‘port‘]=80;

        }

        $httpheader = "POST " . $url_info[‘path‘] . " HTTP/1.0\r\n";

        $httpheader.= "Host:" . $url_info[‘host‘] . "\r\n";

        $httpheader.= "Content-Type:application/x-www-form-urlencoded\r\n";

        $httpheader.= "Content-Length:" . strlen($post_data) . "\r\n";

        $httpheader.= "Connection:close\r\n\r\n";

        $httpheader.= $post_data;

        $fd = fsockopen($url_info[‘host‘], $url_info[‘port‘]);

        fwrite($fd, $httpheader);

        $gets = "";

        $headerFlag = true;

        while (!feof($fd)) {

            if (($header = @fgets($fd)) && ($header == "\r\n" || $header == "\n")) {

                break;

            }

        }

        while (!feof($fd)) {

            $gets.= fread($fd, 128);

        }

        fclose($fd);

    

        return $gets;

    }

    

    /**

     * 電商Sign簽名生成

     * @param data 內容

     * @param appkey Appkey

     * @return DataSign簽名

     */

    public function encrypt($data, $appkey) {

        return urlencode(base64_encode(md5($data.$appkey)));

    }

}

但是運行起來就一直報錯

技術分享圖片

demo中提供的請求快遞鳥API是使用的fsockopen函數,該函數是PHP較高版本(5.0以上)中功能比較強大的,通過一個URL和PORT請求返回一個文件指針,後面的就可以通過文件操作函數獲取返回結果。

看到這個報錯,確認了我當前使用的PHP版本,然後去php.ini配置文件查看allow_url_fopen 是開的(ON),擴展包也是去掉註釋的,禁用函數中也沒有fsockopen。

最好我選擇把接口請求寫成函數,竟然就有效了,最後的總結出來的是,fscockopen函數放在php類裏面不起效果,要放在函數中使用,實例如下:

技術分享圖片

技術分享圖片

技術分享圖片

技術分享圖片

解決在TP5中無法使用快遞鳥的即時查詢API