Blogger Information
Blog 60
fans 0
comment 0
visits 100936
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP快递查询接口api和快递单号智能判断PHP代码
快递100API
Original
1855 people have browsed it

如果电商企业想将业务提升到一个新的水平,则应考虑接入第三方快递查询API接口。快递查询API接口提供了很多好处,并且可以为电商企业、微商带来强大的竞争优势。因为相对于独立一家家对接各个快递公司的服务接口,这种第三方快递查询API接口支持集中查询,降低对接难度,以及减少对快递查询接口的维护资源投入。

一、快递查件接口类型

快递查件接口类型是围绕着寄件、收件、查件出发的,所以快递接口也就只有三种核心功能,分别是快递寄件API接口、快递收件API接口和快递查件API接口,目前有不少第三方快递查询API接口公司提供这种集中查件接口,比如:

聚合数据

极速数据

快递100(PHP快递查询接口api)


二、申请流程

各个平台的申请流程99%都是一样的,以快递100API开放平台为例:

1.注册,并获得开发者账号(ID、密钥、),注册地址:https://api.kuaidi100.com/register/enterprise


2.选择物流查询API对接,让开发人员完成技术调试即可,一般4个小时内就能完成测试和上线。


3.将物流查询API集成到你的软件中即可,以下是快递查询API的快递单号智能判断代码(PHP快递查询接口api代码)

(快递单号智能判断功能:根据客户提交的快递单号,判断该单号可能所属的快递公司编码,返回的数据是多个可能的快递公司列表,相似度高的快递公司排名靠前。)

实例

<?php
   //====================================
   // 智能判断示例代码
   // 授权信息可通过链接查看:https://api.kuaidi100.com/manager/page/myinfo/enterprise
   //====================================
   //参数设置
   $key = '';                        //客户授权key
   $num = '3950055201640';           //单号
   //请求参数
   $post_data = array();
   $post_data["key"] = $key;
   $post_data["num"] = $num;
   
   $url = 'http://www.kuaidi100.com/autonumber/auto';    //智能判断请求地址
   
   $params = "";    foreach ($post_data as $k=>$v) {
       $params .= "$k=".urlencode($v)."&";        //默认UTF-8编码格式
   }
   $post_data = substr($params, 0, -1);echo '请求参数<br/>'.$post_data;    
   //发送post请求
   $ch = curl_init();
   curl_setopt($ch, CURLOPT_POST, 1);
   curl_setopt($ch, CURLOPT_HEADER, 0);
   curl_setopt($ch, CURLOPT_URL, $url);
   curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
   curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
   $result = curl_exec($ch);
   $data = json_decode($result);echo '<br/><br/>返回数据<br/>';echo var_dump($data);?>

运行实例 »

点击 "运行实例" 按钮查看在线实例

具体参数条件需要参考官方的技术参数文档,按文档配置即可,配置过程简单。语言是PHP快递查询接口api。

https://api.kuaidi100.com/document/5f1106542977d50a94e10241.html


Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post