博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
快递100API
阅读量:5245 次
发布时间:2019-06-14

本文共 2245 字,大约阅读时间需要 7 分钟。

url:http://www.kuaidi100.com/query

拼接参数:

参数名称 参数取值 参数类型
type 快递码,请参考 String
postid 快递单号 String
id 未知,可为空 String
valicode 未知,可为空 String
temp 未知,可为空 String

url 示例:(圆通单号为2234014274的快递,不过快递已经过期了,所以显示不了信息,可以自行套用快递单号)

请求方式:GET

json 示例:

{    "message": "ok",    "nu": "2234014274",    "ischeck": "1",    "condition": "F00",    "com": "yuantong",    "status": "200",    "state": "3",    "data": [      {        "time": "2016-11-26 19:10:30",        "ftime": "2016-11-26 19:10:30",        "context": "客户 签收人 : 本人签收 已签收  感谢使用圆通速递,期待再次为您服务",        "location": null      },      {        "time": "2016-11-22 18:19:03",        "ftime": "2016-11-22 18:19:03",        "context": "派送不成功,政府机关、学校等特殊单位,正在安排处理中。",        "location": null      },      {        "time": "2016-11-22 14:20:50",        "ftime": "2016-11-22 14:20:50",        "context": "北京大学 已签收",        "location": null      },      {        "time": "2016-11-22 10:33:25",        "ftime": "2016-11-22 10:33:25",        "context": "北京七道堰 已发出,下一站 北京大学",        "location": null      },      {        "time": "2016-11-22 10:27:47",        "ftime": "2016-11-22 10:27:47",        "context": "北京六和塔 已收入",        "location": null      },      {        "time": "2016-11-22 16:53:18",        "ftime": "2016-11-22 16:53:18",        "context": "浙江省五道口 已发出,下一站 北京转运中心",        "location": null      },      {        "time": "2016-11-22 00:33:51",        "ftime": "2016-11-22 00:33:51",        "context": "浙江省四码头 已收入",        "location": null      },      {        "time": "2016-11-11 23:53:09",        "ftime": "2016-11-11 23:53:09",        "context": "浙江省三里屯 已发出,下一站 浙江省金华市义乌市",        "location": null      },      {        "time": "2016-11-11 20:04:10",        "ftime": "2016-11-11 20:04:10",        "context": "浙江省二亩地 已打包",        "location": null      },      {        "time": "2016-11-1 18:11:16",        "ftime": "2016-11-11 18:11:16",        "context": "浙江省一条街 已揽收",        "location": null      }    ]  }

 

解析:

  • messageok 则表示没有问题,否则携带错误信息
  • nu:运单号
  • ischeck1表示成功,0表示错误
  • com:快递拼音
  • data:具体到达的派送点,逆序
  • time:到达时间
  • ftime:到达时间
  • context:到达地点具体信息
  • location:到达地点,但取值一直为 null
作者:夕夜_如风
链接:https://www.jianshu.com/p/13db2ad01421
来源:简书
简书著作权归作者所有,任何形式的转载都请联系作者获得授权并注明出处。

转载于:https://www.cnblogs.com/zhangxiaoxia/p/11236959.html

你可能感兴趣的文章
几道面试题
查看>>
Factory Design Pattern
查看>>
python中贪婪与非贪婪
查看>>
guava API整理
查看>>
无锁编程笔记
查看>>
jquery mobile
查看>>
如何在vue单页应用中使用百度地图
查看>>
Springboot使用步骤
查看>>
Spring属性注入
查看>>
Springboot-配置文件
查看>>
Springboot-日志框架
查看>>
P1192-台阶问题
查看>>
一、使用pip安装Python包
查看>>
spring与quartz整合
查看>>
Kattis之旅——Eight Queens
查看>>
3.PHP 教程_PHP 语法
查看>>
Duilib扩展《01》— 双击、右键消息扩展
查看>>
利用Fiddler拦截接口请求并篡改数据
查看>>
python习题:unittest参数化-数据从文件或excel中读取
查看>>
在工程中要加入新的错误弹出方法
查看>>