//获取token wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/token', method:'get', data: { grant_type: 'client_credential', appid: 'xxxxxxx', secret: 'xxxxxxxxxxxxxxxxxxxx', }, header: { 'content-type': 'application/json' }, success(res) { //获取公众号素材列表 let access_token = res.data.access_token; wx.request({ url: 'https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=' + access_token, method: 'post', data: { "type": 'news', "offset": 0, "count": 10 }, header: { 'content-type': 'application/json' }, success(res) { console.log(res) } }) } })
小程序如何获取关联公众号的文章列表小程序如何获取关联公众号的文章列表,知道如何打开一个公众号文章,但是怎么去获取列表呢? 想整合多个关联公众号的文章到一个小程序里面,谢谢各位大佬指点
2020-06-08