logistics.getAllDelivery
本接口应在服务器端调用,详细说明参见服务端API。
本接口支持云调用。需开发者工具版本 >= 1.02.1904090(最新稳定版下载) wx-server-sdk >= 0.4.0
获取支持的快递公司列表
调用方式:
HTTPS 调用
请求地址GET https://api.weixin.qq.com/cgi-bin/express/business/delivery/getall?access_token=ACCESS_TOKEN
请求参数
属性 |
类型 |
默认值 |
必填 |
说明 |
access_token |
string |
|
是 |
接口调用凭证 |
返回值
Object
属性 |
类型 |
说明 |
count |
number |
快递公司数量 |
data |
Array.<Object> |
快递公司信息列表 |
data 的结构
属性 |
类型 |
说明 |
delivery_id |
string |
快递公司 ID |
delivery_name |
string |
快递公司名称 |
can_use_cash |
number |
是否支持散单, 1表示支持 |
can_get_quota |
number |
是否支持查询面单余额, 1表示支持 |
cash_biz_id |
string |
散单对应的bizid,当can_use_cash=1时有效 |
service_type |
Array.<Object> |
支持的服务类型 |
data.service_type 的结构
属性 |
类型 |
说明 |
service_type |
number |
服务类型ID |
service_name |
string |
服务类型名称 |
返回数据示例{
"count": 7,
"data": [
{
"delivery_id": "BEST",
"delivery_name": "百世快递"
},
{
"delivery_id": "EMS",
"delivery_name": "中国邮政速递物流"
},
{
"delivery_id": "PJ",
"delivery_name": "品骏物流"
},
{
"delivery_id": "SF",
"delivery_name": "顺丰速运"
},
{
"delivery_id": "YTO",
"delivery_name": "圆通速递"
},
{
"delivery_id": "YUNDA",
"delivery_name": "韵达快递"
},
{
"delivery_id": "ZTO",
"delivery_name": "中通快递"
}
]
}
云调用
云调用是小程序·云开发提供的在云函数中调用微信开放接口的能力,需要在云函数中通过 wx-server-sdk 使用。
接口方法openapi.logistics.getAllDelivery
需在 config.json 中配置 logistics.getAllDelivery API 的权限,详情
返回值
Object
属性 |
类型 |
说明 |
count |
number |
快递公司数量 |
data |
Array.<Object> |
快递公司信息列表 |
data 的结构
属性 |
类型 |
说明 |
deliveryId |
string |
快递公司 ID |
deliveryName |
string |
快递公司名称 |
canUseCash |
number |
是否支持散单, 1表示支持 |
canGetQuota |
number |
是否支持查询面单余额, 1表示支持 |
cashBizId |
string |
散单对应的bizid,当can_use_cash=1时有效 |
serviceType |
Array.<Object> |
支持的服务类型 |
data.serviceType 的结构
属性 |
类型 |
说明 |
serviceType |
number |
服务类型ID |
serviceName |
string |
服务类型名称 |
请求示例const cloud = require('wx-server-sdk')
cloud.init()
exports.main = async (event, context) => {
try {
const result = await cloud.openapi.logistics.getAllDelivery({})
return result
} catch (err) {
return err
}
}
返回数据示例{
"count": 7,
"data": [
{
"deliveryId": "BEST",
"deliveryName": "百世快递"
},
{
"deliveryId": "EMS",
"deliveryName": "中国邮政速递物流"
},
{
"deliveryId": "PJ",
"deliveryName": "品骏物流"
},
{
"deliveryId": "SF",
"deliveryName": "顺丰速运"
},
{
"deliveryId": "YTO",
"deliveryName": "圆通速递"
},
{
"deliveryId": "YUNDA",
"deliveryName": "韵达快递"
},
{
"deliveryId": "ZTO",
"deliveryName": "中通快递"
}
],
"errMsg": "openapi.logistics.getAllDelivery:ok"
}
|
请发表评论