提交 6744120c 编写于 作者: VK1688's avatar VK1688

Update uni-subscribemsg.md

上级 9ce34660
......@@ -85,6 +85,26 @@ let res = await uniSubscribemsg.sendTemplateMessage({
|errCode|为0代表发送成功,其他均为失败,与微信公众号官方返回码一致 [微信公众号全局返回码](https://developers.weixin.qq.com/doc/offiaccount/Getting_Started/Global_Return_Code.html)|
|errMsg |失败后的提示 ,与微信公众号官方错误提示一致 |
### 发送微信小程序订阅消息@sendSubscribeMessage
订阅消息顾名思义,需要先订阅,才可以发送消息,因此前端需要先让用户订阅。
**前端订阅**
调用 [uni.requestSubscribeMessage](https://uniapp.dcloud.net.cn/api/other/requestSubscribeMessage.html) API即可让用户订阅。
```js
uni.requestSubscribeMessage({
tmplIds: ["ksKe4u8VGwScLUMFXERYgtmVqD9KUFPF-hN3-qae7_I"], // 改成你的小程序订阅消息模板id
success: () => {
uni.showToast({
title: "订阅成功",
icon: "none"
})
}
});
```
### 检测用户是否关注了公众号@getSubscribeUserInfo
**用法**
......@@ -118,27 +138,6 @@ let res = await uniSubscribemsg.getSubscribeUserInfo({
|subscribe| true 已关注公众号 false 未关注公众号 |
|result | [用户基本信息返回值](https://developers.weixin.qq.com/doc/offiaccount/User_Management/Get_users_basic_information_UnionID.html#UinonId) |
### 发送微信小程序订阅消息@sendSubscribeMessage
订阅消息顾名思义,需要先订阅,才可以发送消息,因此前端需要先让用户订阅。
**前端订阅**
调用 [uni.requestSubscribeMessage](https://uniapp.dcloud.net.cn/api/other/requestSubscribeMessage.html) API即可让用户订阅。
```js
uni.requestSubscribeMessage({
tmplIds: ["ksKe4u8VGwScLUMFXERYgtmVqD9KUFPF-hN3-qae7_I"], // 改成你的小程序订阅消息模板id
success: () => {
uni.showToast({
title: "订阅成功",
icon: "none"
})
}
});
```
**云端发送**
```js
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册