1) API application
2) Mobile query API
3) Server requirements
4) Intelligent query
5) Effect display
------------------------------------------------ ----------------------------------
1) API application
Express 100 provides query interface API, you need to apply for Key http://www.kuaidi100.com/openapi/applyapi.shtml
The number of queries is limited, 2013-11-19 up to 2000 times/day
One of the application conditions is to provide a link to Express 100. I applied 2 times on the homepage of the website
but failed
2) Mobile query API
Express 100 provides mobile query API, http://www.kuaidi100.com/openapi/mobileapi.shtml
No need to apply for a Key, free; however, the returned result is html, which needs to be parsed
Parse through simple_html_dom.php html, finally got the desired result
<?php /* 快递100 提供的接口,返回html; 使用 simple_html_dom 解析html,得到快递结果 d_eng (sh109419@163.com) 2013-11-20 */ /* 天天快递查询电话:4001-888-888<br> <br>天天快递单号:560050137619<br>查询结果如下所示:<br>·2013-11-18 16:58:30 快件已到达【上海虹口一部】 扫描员是【11】上一站是【上海集散】<br>·2013-11-18 18:46:19 【上海普陀二部】的收件员【高军13916321314】已收件<br>·2013-11-18 22:28:08 由【上海普陀二部】发往【上海集散】<br>·2013-11-19 00:38:31 由【上海集散】发往【上海虹口一部】<br>·2013-11-19 08:13:32 快件已到达【上海虹口一部】 扫描员是【21242.1010】上一站是【上海集散】<br>·2013-11-19 08:54:45 【上海虹口一部】的派件员【孔明】正在派件<br>·2013-11-19 10:58:14 已签收,签收人是【同事代签】 */ header("Content-Type:text/html; charset=utf-8"); include("simple_html_dom.php"); function express($company,$code) { // get html $url = "http://wap.kuaidi100.com/wap_result.jsp?rand=20120517&id=".$company."&fromWeb=null&&postid=".$code; $html=file_get_contents($url) or die(); //get form part $x=explode("</form>",$html); $x=explode("<form",$x[0]); $form = "<form".$x[1]."</form>"; // create dom $dom = str_get_html($form); // 找到所有<p> $text = ""; foreach($dom->find('p') as $element) { if ($text<>"") $text = $text.'<br>'; $text = $text.$element->plaintext; } return $text; } echo express('shentong','668711492860'); echo '<br>'; echo '<br>'; echo express('tiantian','560050137619'); echo '<br>'; echo '<br>'; echo express('yunda','1900497688272'); ?>
3) Server requirement
Express 100 does not support Sina SAE platform, and then tried
a) Mobile MMAE platform, but it does Yes; but MMAE is slow and unstable, so give up
b) Tencent Cloud platform, you get 200 for opening an account, but PHP+mySQL costs almost 200 per month, give up
c) Apply for Baidu Cloud platform, BAE can access Express 100, but BAE does not support Google Translate,
OK, solution, WeChat service program is placed in BAE, Google Translate is placed in SAE,
WeChat uses Google When translating, the command is sent to the WeChat service program (BAE), and the Google translation results are remotely called from BAE (SAE)
After the express call demo is done and the server environment is well established, developing the WeChat program is simple
4) Intelligent query
Express query generally requires the courier and the courier company. Intelligent query is to intelligently match the courier company and find the record when only the courier number is given.
The core of intelligent query is matching strategy, some of which are collected online:
公司名称 单号长度 纯数字 常用 德邦 8-10 Y 1或2开头 EMS 13 N 开头和结尾二位是字母,中间是数字 汇通 12-14 N 50*开头 联昊通 12 Y 5*、6*等开头 申通 12 Y 1-9开头 268*、368*、58* 66*等开头 顺丰 12 Y 电话区号后三位开头 速尔 12 Y 天天 12 Y 6**、5*、00*等开头 圆通 10 N 1*、2*、6*、8*、D*及V*等开头 韵达 13 Y 10*、12*、19*等开头 中通 12 Y 2008**、6**、010等开头 宅急送 10 Y 7**、6**、5**等开头
5) Effect display
The above is the content of WeChat public platform development-express query. For more related content, please pay attention to the PHP Chinese website (www.php.cn)!