微信公众号图片上传接口

Posted 超小级小萝莉

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了微信公众号图片上传接口相关的知识,希望对你有一定的参考价值。

结合elemen ui 

 <el-upload
                      class="upload-demo"
                      :on-preview="handlePreview"
                      action="66666"
                        :on-remove="handleRemove"
                          multiple
                      :before-upload="shopbeforeAvatarUpload">
                      <el-button size="small" type="primary"  @click=‘getupload()‘>点击上传</el-button>
                      <div slot="tip" class="el-upload__tip">只能上传jpg/png文件,且不超过500kb</div>
                    </el-upload>

跨越问题,下次再补上解决方法

getupload(){
                this.$http.put(wechatapi+‘/token?access-token=‘+this.token).then((res)=> {
                    
                    this.upload = ‘/cgi-bin/material/add_material?access_token=‘+ res.body+‘&type=image‘;
                    return   
                }).catch((error)=> {})
},
 shopbeforeAvatarUpload(file) {
                const isJPG = file.type === ‘image/jpeg/png‘;
                const isLt2M = file.size / 1024 / 1024 < 2;
                if (!isLt2M) {
                  this.$message.error(‘上传头像图片大小不能超过 2MB!‘);
                }
                this.$http.put(wechatapi+‘/token?access-token=‘+this.token).then((res)=> {

                    var fd =new FormData();
                    fd.append(‘media‘,file,file.name);

                    this.$http.post(‘/cgi-bin/material/add_material?access_token=‘+ res.body+‘&type=image‘,fd,{emulateJSON:true}).then((res)=>{
                        console.log(res)
                    }).catch((res)=>{})                 
                }).catch((error)=> {})
                return false
},

另外获取微信token的接口是封装过的

以上是关于微信公众号图片上传接口的主要内容,如果未能解决你的问题,请参考以下文章

用 Python 和 werobot进行公众号开发-2.发送及上传图片

微信公众平台开发—上传永久素材(图片)

移动端网页上传图片功能简析(主要应用场景为微信公众号)

微信公众号wx.chooseImage选中图片后获取图片大小并压缩

微信公众平台开发(80) 上传下载多媒体文件

请问微信公众平台上传图片的数量是多少?或者上传上限是多少KB?谢谢!