# 上传图片
# 接口调用请求说明
http请求方式:POST
https://api.weixin.qq.com/product/img/upload?access_token=xxxxxxxxx&height=108&width=108
# 请求示例
curl -F media=@test.jpg "https://api.weixin.qq.com/product/img/upload?access_token=xxxxxxxxx&height=108&width=108"
url中的参数height
和width
必填,分别代表图片的高和宽,单位:像素
# 回包参数说明
参数 | 类型 | 说明 |
---|---|---|
errcode | number | 错误码 |
errmsg | string | 错误信息 |
pic_file.media_id | number | media_id |
pic_file.pay_media_id | string | 支付media_id |
# 回包示例
{
"errcode": 0,
"errmsg":"ok",
"pic_file":
{
"media_id": "xlvjalsdhgas",
"pay_media_id": "asdgasvdadfa"
}
}
# 返回码
返回码 | 错误类型 |
---|---|
-1 | 系统异常 |
-2 | token太长 |