收藏
回答

小程序如何获取关联公众号的文章列表

小程序如何获取关联公众号的文章列表,知道如何打开一个公众号文章,但是怎么去获取列表呢?

想整合多个关联公众号的文章到一个小程序里面,谢谢各位大佬指点

最后一次编辑于  2018-10-14
回答关注问题邀请回答
收藏

2 个回答

  • L
    L
    2018-10-10

    有人解答一下吗,万分感谢!!!

    2018-10-10
    有用 2
    回复
  • 儇鑫忻梓
    儇鑫忻梓
    2020-06-08
    //获取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
    有用
    回复 1
    • 帅
      2021-05-14
      返回 48001  报api unauthorized rid
      2021-05-14
      1
      回复
登录 后发表内容