# 小程序认证上传补充材料
接口应在服务器端调用,详细说明参见服务端API。
# 接口说明
# 接口英文名
secwxaapi_uploadauthmaterial
# 功能描述
小程序认证上传补充材料
# 调用方式
# HTTPS 调用
POST https://api.weixin.qq.com/wxa/sec/uploadauthmaterial?access_token=TOKEN
# 请求参数
属性 | 类型 | 必填 | 说明 |
---|---|---|---|
media | formdata | 是 | 图片(image): 不超过2M,支持PNG\JPEG\JPG\GIF格式 |
# 返回参数
属性 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
type | string | 类型 |
mediaid | buffer | 媒体id |
# 调用示例
示例说明: HTTPS请求
# 请求数据示例
curl -F media=@xxx.jpg "https://api.weixin.qq.com/wxa/sec/uploadauthmaterial?access_token=TOKEN"
# 返回数据示例
{
"errcode":0,
"errmsg":"ok",
"mediaid":"xxxxxxxxxxxxxxxxx"
}
# 错误码
错误码 | 错误描述 | 解决方案 |
---|---|---|
43002 | require POST method | 需要 POST 请求 |
41005 | media data missing | 缺少多媒体文件数据,传输素材无视频或图片内容 |
40006 | invalid meida size | 上传素材文件大小超出限制 |
40005 | invalid file type | 上传素材文件格式不对 |