微信公众号获取图片素材接口

Posted 超小级小萝莉

tags:

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

看代码

getImage(){
                this.$http.put(wechatapi+‘/token?access-token=‘+this.token).then((res)=> {

                    var postobj = {
                        ‘type‘:‘image‘,
                        ‘offset‘:this.listnum2,
                        ‘count‘:this.perpage2
                    }
                    postobj = JSON.stringify(postobj)
                    this.$http.post(‘/cgi-bin/material/batchget_material?access_token=‘+res.body,postobj,{emulateJSON: true}).then((res)=>{
                        console.log(res,6666)
                        this.data2 = res.body.item;
                        this.listTotal2 = res.body[‘total_count‘];
                        this.page2 =  Math.ceil((res.body[‘total_count‘])/(this.perpage2));
                    }).catch((res)=>{})
                }).catch((error)=> {})
                
 },

分页需要根据自定义页数perpage2去请求,offset参数就是请求到哪一个位置,count是页数

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

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

微信公众号接口新增永久素材

微信公众号开发之群发消息

Java微信公众平台开发之素材管理(Spring Boot 2.X)

微信公众平台接口如何获取微信用户详细信息

根据微信的公众号获取公众号的二维码 根据公众号获得二维码的图片