項目開發中,有些需求難免會用到關于快遞的一些Api接口;本篇主要介紹的是快遞鳥的查詢Api

需要登入 ,申請一下 使用者ID 和 API key
結果:
<?php
//電商ID
defined('EBusinessID') or define('EBusinessID', '123456');
//電商加密私鑰,快遞鳥提供,注意保管,不要洩漏
defined('AppKey') or define('AppKey', '1234567890');
//請求url:測試位址
//defined('ReqURL') or define('ReqURL', 'http://sandboxapi.kdniao.cc:8080/kdniaosandbox/gateway/exterfaceInvoke.json');
//請求url:正式位址
defined('ReqURL') or define('ReqURL', 'http://api.kdniao.cc/Ebusiness/EbusinessOrderHandle.aspx');
$kgs = "JD";//快遞公司簡稱,官方有文檔
$number = "12345678";//快遞單号
//調用查詢物流軌迹
//---------------------------------------------
$logisticResult=getOrderTracesByJson($kgs,$number);
echo $logisticResult;
//解析資料
$data = json_decode($logisticResult,true);
if($data['Success'] == true){//傳回資訊成功
$str = "";
if(isset($data['Traces']) && !empty($data['Traces'])){
for($i=0;$i<count($data['Traces']);$i++){
$str .= "時間:".$data['Traces'][$i]['AcceptTime']."<br/>位址:".$data['Traces'][$i]['AcceptStation']."<br/>";
}
}
echo "您查詢的單号是:".$data['LogisticCode']."<br/>
物流資訊:<br/>".$str."";
}
//---------------------------------------------
/**
* Json方式 查詢訂單物流軌迹
*/
function getOrderTracesByJson($kgs,$number){
$requestData= "{'OrderCode':'','ShipperCode':'$kgs','LogisticCode':'$number'}";
$datas = array(
'EBusinessID' => EBusinessID,
'RequestType' => '1002',
'RequestData' => urlencode($requestData) ,
'DataType' => '2',
);
$datas['DataSign'] = encrypt($requestData, AppKey);
$result=sendPost(ReqURL, $datas);
//根據公司業務處理傳回的資訊......
return $result;
}
/**
* post送出資料
* @param string $url 請求Url
* @param array $datas 送出的資料
* @return url響應傳回的html
*/
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簽名
*/
function encrypt($data, $appkey) {
return urlencode(base64_encode(md5($data.$appkey)));
}
?>