如何用PHP對接調用快遞鳥物流信息api接口

博主最近需要做一個物流信息軌跡查詢的api接口,就去網上搜索,看到了一個快遞鳥的API接口,返回值是以JSON格式,只需要返回是轉成數組就能輕鬆實現各種實例了。真的很方便。
對接流程

快遞鳥網站申請接口KEY並認證-對接接口-調試-上線使用

二、對接準備
1.登錄快遞鳥註冊快賬號
2.獲取開發者賬號信息(ID ,API Key),登錄快遞鳥後臺中查看
3.進行技術聯調,並完成調試,物流查詢api地址:http://www.kdniao.com/api-track
4.在您的軟件中集成快遞物流查詢接口

下圖是快遞鳥API示意接口,
在這裏插入圖片描述
由於是免費的,所以限制很多,比如每天最多隻能查詢3000次和需要實名認證。

博主這裏貼出博主的代碼:

<?php
//電商ID
defined('EBusinessID') or define('EBusinessID', '電商ID');
//電商加密私鑰,快遞鳥提供,注意保管,不要泄漏
defined('AppKey') or define('AppKey', '電商加密私鑰');
//請求url
defined('ReqURL') or define('ReqURL', 'http://api.kdniao.cc/Ebusiness/EbusinessOrderHandle.aspx');
//調用查詢物流軌跡
//---------------------------------------------
$kgs = "STO";//快遞公司簡稱,官方有文檔
$number = "3335800028275";//快遞單號//
$logisticResult = getOrderTracesByJson($kgs,$number);
$data = json_decode($logisticResult,true);
if($data['Success'] == true){//返回信息成功
$str = "";
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方式 查詢訂單物流軌跡
 *$kgs string 快遞公司
 *$number string 快遞單號
 */
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)));
}
?>
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章