快遞鳥單號查詢api接口簡單實用方法

之前有介紹過一些單號接口的應用, 在這裏介紹一下快遞鳥查詢接口的簡單應用,再次封裝一個cURL發送方法寫出:如果不想用這個函數,也可以使用file_get_content() 方法效果一致。在這裏,我們來使用cURL方法來實現
技術文檔請參考快遞鳥官網api:https://www.kdniao.com/api-track
快遞公司編碼鏈接:https://www.kdniao.com/file/2019快遞鳥接口支持快遞公司編碼.xlsx
(一)接入流程:
1>.註冊快遞鳥賬號
API_ID:XXXXXX
API_KEY:XXXXXXXXXXXXXXXXXX
2>.服務申請
個人中心裏面申請需要的服務,即時查詢功能有免費的服務
3>.對接服務
寫自己的業務邏輯----本文主體
4>.測試代碼
5>.正式使用

在這裏插入圖片描述
在這裏插入圖片描述

<?php
/*
 * 快遞鳥物流接口
 * By: Phpstorm
 * Author: XiaoJie
 * Datetime: 2019/10/1 15:28
 */
 
namespace app\portal\controller;
 
use cmf\controller\WeChatBaseController;
 
class KdniaoController extends WeChatBaseController
{
    //電商ID。請到快遞鳥官網申請http://kdniao.com/reg
    private $EBusinessID = '';
    //電商加密私鑰,快遞鳥提供,注意保管,不要泄漏。請到快遞鳥官網申請http://kdniao.com/reg
    private $AppKey = '';
    //請求url
    private $ReqURL = 'http://api.kdniao.cc/Ebusiness/EbusinessOrderHandle.aspx';
 
    /**
     * @param $order_sn 訂單編號
     * @param $shipper_code 快遞公司編碼
     * @param $logistic_code 物流單號
     */
    public function index()
    {
        $logisticResult = $this->getOrderTracesByJson($order_sn='20181024457851254',$shipper_code='YD',$logistic_code='3945341219278');
        echo $logisticResult;
    }
 
    /**
     * Json方式 查詢訂單物流軌跡
     */
    public function getOrderTracesByJson($order_sn,$shipper_code,$logistic_code){
        $requestData= "{'OrderCode':'".$order_sn."','ShipperCode':'".$shipper_code."','LogisticCode':'".$logistic_code."'}";
 
        $datas = array(
            'EBusinessID' => $this->EBusinessID,
            'RequestType' => '1002',
            'RequestData' => urlencode($requestData) ,
            'DataType' => '2',
        );
        $datas['DataSign'] = $this->encrypt($requestData, $this->AppKey);
        $result = $this->sendPost($this->ReqURL, $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)));
    }
 
}

在這裏插入圖片描述

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章