赞
踩
推送通知是指在微信小程序中,通过后台服务器向用户发送消息提醒的功能。消息订阅则是允许小程序向用户发送订阅消息的功能。
下面将通过代码案例来详细介绍微信小程序开发中的推送通知和消息订阅。
一、推送通知
推送通知是在后台服务器中主动向用户发送消息提醒。在开发前,需要先完成以下准备工作:
完成上述准备工作后,可以开始编写代码实现推送通知的功能。
- const request = require('request');
-
- function getAccessToken(appId, appSecret) {
- return new Promise((resolve, reject) => {
- const url = `https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=${appId}&secret=${appSecret}`;
- request.get(url, function (error, response, body) {
- if (error) {
- reject(error);
- } else {
- resolve(JSON.parse(body).access_token);
- }
- });
- });
- }
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。