# 小程序发布
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/plugin/deploy_miniprogram?access_token=xxxxxxxxx
# 请求参数示例
{
"service_id": 123456
}
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
}
# 请求参数说明
参数 | 类型 | 是否必填 | 说明 |
---|---|---|---|
service_id | number | 是 | 服务id |
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
# 返回码 TODO
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
-2 | token太长 |