简要描述:
微信消息授权
https://developers.weixin.qq.com/miniprogram/dev/framework/server-ability/message-push.html
RG3.BS.Dev 升级到 6.0.2以上版本
接口版本:
版本号 | 制定人 | 制定日期 | 修订日期 |
---|---|---|---|
v3 | 陈碧贵 | 2022-04-12 | xxxx-xx-xx |
请求URL:
- http://{url参数}/bs/api/v3/dev/wechatmini/msg/{ownerId}
http://localhost:5901/bs/api/v3/dev/wechatmini/msg/bt
请求方式:
- GET
请求头:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
Content-Type: | 是 | string | application/json; charset=utf-8 请求类型 |
请求参数:
参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
signature | 是 | string | 微信加密签名,signature结合了开发者填写的token参数和请求中的timestamp参数、nonce参数。 |
timestamp | 是 | string | 时间戳 |
nonce | 是 | string | 随机数 |
echostr | 是 | string | 随机字符串 |
path参数名 | 是否必须 | 类型 | 说明 |
---|---|---|---|
code | 是 | string | 微信小程序获取 |
ownerId | 是 | string | 所属项目 |
返回示例:
正确时返回:
echostr
错误时返回:
{
"code": 0,
"message": ""
"error":{
errorCode:null,
errorText:null
}
"success": false,
}
添加不验证verlyApi
"wechatminimsg": {
"name": "微信公众号安全接口认证",
"path": "/bs/api/v3/dev/wechatmini/msg",
"auth": null
},
\Config\AppAuth\basis\authorized.provider.json
配置文件添加小程序信息
\Config\AppDev{ownerId}\dev.provider_res_tencent.json
"wechatmini": {
"{ownerId}": {
"token": null,
"appSecret": null,
"appId": null
}
},
验证后效果
文档更新时间: 2022-04-12 10:10 作者:admin