获取匹配快递数据
接口地址: 联盟地址/api/call.php?pos=Getexpressdata
数字签名 是由 会员账户+MD5(密码)+时间戳 拼接后再加密一次获得
下面参数全部以 POST方式 UTF-8编码 传入
参数 类型 必填 长度 描述
username String 11 会员账户
signkey String 32 数字签名 md5(账户+md5(密码)+时间戳 )
timestamp String 10 时间戳10位数
kd_id String 20 快递代码
date String 20 筛选日期 2000-01-01
send_province String 20 发货省
send_city String 20 发货市
send_area String 20 发货区县
collect_province String 20 收货省
collect_city String 20 收货市
collect_area String 20 收货区县
page int 10 查询页数 默认第一页
limit int 10 每页显示多少数据 默认20条

	{"code":0
	,"msg":"成功"
	,"count": 1000 //查询记录总数
	,"data":[
	{"xm_id":11111    //快递编号
	,"xm_name": '中通快递'    //快递名称
	,"send_province": '广东省'    //发货省
	,"send_city": '广州市'    //发货市
	,"send_area": '白云区'    //发货区县
	,"collect_province": '广东省'    //收货省
	,"collect_city": '广州市'    //收货市
	,"collect_area": '白云区'    //收货区县
	,"xm_display": '2000-01-01'    //物流日期
	
	}
	]}
	

	{"code":101
	,"msg":"失败内容"
	}