Postman下载安装
调试公众号GET请求(获得基础token)
接口地址
https请求方式: GET
https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=APPID&secret=APPSECRET
参数说明
参数 | 是否必须 | 说明 |
---|---|---|
grant_type | 是 | 获取access_token填写client_credential |
appid | 是 | 第三方用户唯一凭证 |
secret | 是 | 第三方用户唯一凭证密钥,即appsecret |
通过Postman调试
-
从公众号后台获取appid和secret
image.png -
将appid和secret拼入接口 填入postman 请求方式选为GET
image.png -
点击send发送请求 得到返回结果
image.png -
此时调用接口的IP地址不在白名单中,需要在公众号后台接口IP白名单中进行设置,多个IP用回车分割
image.png -
此时回到postman 再次发送请求即可得到正确的返回内容
image.png
调试公众号POST请求(获得后台素材media_id)
接口地址
http请求方式: POST
https://api.weixin.qq.com/cgi-bin/material/batchget_material?access_token=ACCESS_TOKEN
参数说明
参数 | 是否必须 | 说明 |
---|---|---|
type | 是 | 素材的类型,图片(image)、视频(video)、语音 (voice)、图文(news) |
offset | 是 | 从全部素材的该偏移位置开始返回,0表示从第一个素材 返回 |
count | 是 | 返回素材的数量,取值在1到20之间 |
通过Postman调试
-
将刚刚获得的基础token拼入接口地址填入postman 选择请求方式为POST
image.png -
添加请求参数
image.png -
发送请求 从结果中获取素材ID
image.png
网友评论