
倒腾了一个小时,总算倒腾出来了,现在做下记录:
1、查看小程序和公众号是否绑定过:在 公众号->小程序管理 查看是否绑定了小程序,同时在 小程序->设置->关联设置->关联的公众号 查看是否关联了公众号。只有两者进行了绑定,才可能获取。
2、查看公众号是否有认证过。注意:个人公众号是无权限放开文章接口的。打开 https://developers.weixin.qq.com/doc/offiaccount/Getting_Started/Explanation_of_interface_privileges.html 可查看权限。在 公众号->认证详情 可以查看是否认证过。没有认证,或者个人账号,获取文章时会提示无权限:
1 | errcode: 48001 |
2 | errmsg: "api unauthorized hints: [2kLBmbXIRa-q0Irva!]" |
接口文档:https://developers.weixin.qq.com/doc/offiaccount/Basic_Information/Get_access_token.html
接口地址:https://api.weixin.qq.com/cgi-bin/token
参数:
1 | { |
2 | grant_type: 'client_credential' , //固定写死 |
3 | appid: 'xxxxxxxxx' , //注意,这里是公众号appid |
4 | secret: 'xxxxxxxxxxxxxxxx' , //注意,这里是公众号的APPSecret |
5 | } |
代码如下:
01 | //获取token |
02 | wx.request({ |
03 | url: 'https://api.weixin.qq.com/cgi-bin/token' , |
04 | method: 'get' , |
05 | data: { |
06 | grant_type: 'client_credential' , |
07 | appid: 'xxxxxxxxxx' , |
08 | secret: 'xxxxxxxxxxxxxxxxxxxxxx' , |
09 | }, |
10 | header: { |
11 | 'content-type' : 'application/json' |
12 | }, |
13 | success(res) { |
14 | } |
15 | }) |
1、这里的appid和secret都是公众号的,不是小程序的,可以在公众号->基本配置 进行查看
2、要配置IP白名单,就在secret下面,否则无法获取
4、获取公众号文章列表(素材列表)
接口文档:https://developers.weixin.qq.com/doc/offiaccount/Asset_Management/Get_materials_list.html
接口地址:https://api.weixin.qq.com/cgi-bin/material/batchget_material
参数:
1 | { |
2 | "type" : 'news' , //类型,可以使图文列表等,可查看接口文档 |
3 | "offset" : 0, //起始索引 |
4 | "count" : 10 //获取数量,范围0-20 |
5 | } |
代码如下:
01 | wx.request({ |
02 | url: 'https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=' + access_token, //access_token为上一步获取的access_token |
03 | method: 'post' , |
04 | data: { |
05 | "type" : 'news' , |
06 | "offset" : 0, |
07 | "count" : 10 |
08 | }, |
09 | header: { |
10 | 'content-type' : 'application/json' |
11 | }, |
12 | success(res) { |
13 | console.log(res) |
14 | } |
15 | }) |
01 | //获取token |
02 | wx.request({ |
03 | url: 'https://api.weixin.qq.com/cgi-bin/token' , |
04 | method: 'get' , |
05 | data: { |
06 | grant_type: 'client_credential' , |
07 | appid: 'xxxxxxx' , |
08 | secret: 'xxxxxxxxxxxxxxxxxxxx' , |
09 | }, |
10 | header: { |
11 | 'content-type' : 'application/json' |
12 | }, |
13 | success(res) { |
14 | //获取公众号素材列表 |
15 | let access_token = res.data.access_token; |
16 | wx.request({ |
17 | url: 'https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=' + access_token, |
18 | method: 'post' , |
19 | data: { |
20 | "type" : 'news' , |
21 | "offset" : 0, |
22 | "count" : 10 |
23 | }, |
24 | header: { |
25 | 'content-type' : 'application/json' |
26 | }, |
27 | success(res) { |
28 | console.log(res) |
29 | } |
30 | }) |
31 | } |
32 | }) |
部分素材资源来源网站,本站提供免费下载,如有侵权请联系站长马上删除!