微信小程序发送订阅消息(之前是模板消息)
之前的模板消息已经废弃,现在改为订阅消息,订阅消息发布前,需要用户确认后才能接收订阅消息。

小程序端
index.wxml
<button bindtap="send">发送订阅消息</button>
index.js
const app = getApp()
Page({
  data: {
  },
send:function(){
    wx.requestSubscribeMessage({
      tmplIds: ['WZiCliW1zVtHXqX7dGnFNmFvxhW-wd9S_W4WfrwNvss'],
      success:(res)=> {
        wx.request({
          url: 'https://www.xxx.com/send.php',
          data: {
            openid:'要推送的openid',
            template_id:'要使用的template_id',
          },
          header: {
            'content-type': 'application/json'
          },
          success (res) {
            if(res.data.errcode == '43101'){
              console.log("拒绝订阅消息")
            }else if(res.data.errcode == '0'){
              console.log("发送订阅消息")
            }else{
              console.log("未知错误")
            }
          }
        })
      }
    })
  }
)}
后端
send.php
<?php
//设置 header
header("Content-type:application/json");
//接收参数
$template_id = $_GET["template_id"];
$openid = $_GET["openid"];
//初始化 CURL
$ch = curl_init();
// 获取access_token
// include '';
require_once("access_token.php");
//目标服务器地址
curl_setopt($ch, CURLOPT_URL, 'https://api.weixin.qq.com/cgi-bin/message/subscribe/send?access_token='.$access_token);
//设置要POST的数据
curl_setopt($ch, CURLOPT_POST, true);
$data = '{
  "touser": $openid,
  "template_id": $template_id,
  "page": "pages/index/index",// 要跳转的页面
  "miniprogram_state":"developer",
  "lang":"zh_CN",
  "data": {
      "thing4": {
          "value": "欢迎使用专插本最前线小程序"
      },
      "thing5": {
          "value": "小程序由公众号:广东专插本最前线开发"
      }
  }
}';
curl_setopt($ch, CURLOPT_POSTFIELDS, $data);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");
// 对认证证书来源的检查
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, 0);
// 从证书中检查SSL加密算法是否存在
curl_setopt($ch, CURLOPT_SSL_VERIFYHOST, 2);
//获取的信息以文件流的形式返回,而不是直接输出
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
//发起请求
$result = curl_exec($ch);
echo $result;
//关闭请求
curl_close($ch);
?>
access_token.php
<?php
// 声明页面header
header("Content-type:charset=utf-8");
// APPID、APPSECRET
$appid = "你的小程序APPID";
$appsecret = "你的小程序APPSECRET";
// 获取access_token和jsapi_ticket
function getToken(){
    $file = file_get_contents("access_token.json",true);//读取access_token.json里面的数据
    $result = json_decode($file,true);
//判断access_token是否在有效期内,如果在有效期则获取缓存的access_token
//如果过期了则请求接口生成新的access_token并且缓存access_token.json
if (time() > $result['expires']){
        $data = array();
        $data['access_token'] = getNewToken();
        $data['expires'] = time()+7000;
        $jsonStr =  json_encode($data);
        $fp = fopen("access_token.json", "w");
        fwrite($fp, $jsonStr);
        fclose($fp);
        return $data['access_token'];
    }else{
        return $result['access_token'];
    }
}
//获取新的access_token
function getNewToken($appid,$appsecret){
    global $appid;
    global $appsecret;
    $url = "https://api.weixin.qq.com/cgi-bin/token?grant_type=client_credential&appid=".$appid."&secret=".$appsecret."";
    $access_token_Arr =  file_get_contents($url);
    $token_jsonarr = json_decode($access_token_Arr, true);
    return $token_jsonarr["access_token"];
}
$access_token = getToken();
?>
逻辑
1、通过button控件出发send函数
2、send函数调用wx.requestSubscribeMessageAPI,微信允许接收订阅消息
3、 wx.request向send.php后端请求
4、后端获取access_token后,调用订阅消息接口POST一段json数据即可发送订阅消息
官方文档
1、https://developers.weixin.qq.com/miniprogram/dev/api/open-api/subscribe-message/wx.requestSubscribeMessage.html
2、https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.addTemplate.html
Author:TANKING
Date:2020-08-24
Web:http://www.likeyun.cn/
WeChat:face6009
微信小程序发送订阅消息(之前是模板消息)的更多相关文章
- 微信小程序开发之formId使用(模板消息)
		基于微信小程序的模板消息:基于微信的通知渠道,我们为开发者提供了可以高效触达用户的模板消息能力,以便实现服务的闭环并提供更佳的体验.模板推送位置:服务通知模板下发条件:用户本人在微信体系内与页面有交互 ... 
- 微信-小程序-开发文档-服务端-模板消息:templateMessage.send
		ylbtech-微信-小程序-开发文档-服务端-模板消息:templateMessage.send 1.返回顶部 1. templateMessage.send 本接口应在服务器端调用,详细说明参见服 ... 
- 微信-小程序-开发文档-服务端-模板消息:templateMessage.getTemplateList
		ylbtech-微信-小程序-开发文档-服务端-模板消息:templateMessage.getTemplateList 1.返回顶部 1. templateMessage.getTemplateLi ... 
- 微信-小程序-开发文档-服务端-模板消息:templateMessage.addTemplate
		ylbtech-微信-小程序-开发文档-服务端-模板消息:templateMessage.addTemplate 1.返回顶部 1. templateMessage.addTemplate 本接口应在 ... 
- 微信-小程序-开发文档-服务端-模板消息:templateMessage.getTemplateLibraryList
		ylbtech-微信-小程序-开发文档-服务端-模板消息:templateMessage.getTemplateLibraryList 1.返回顶部 1. templateMessage.getTem ... 
- 微信-小程序-开发文档-服务端-模板消息:templateMessage.getTemplateLibraryById
		ylbtech-微信-小程序-开发文档-服务端-模板消息:templateMessage.getTemplateLibraryById 1.返回顶部 1. templateMessage.getTem ... 
- 微信-小程序-开发文档-服务端-模板消息:templateMessage.deleteTemplate
		ylbtech-微信-小程序-开发文档-服务端-模板消息:templateMessage.deleteTemplate 1.返回顶部 1. templateMessage.deleteTemplate ... 
- .netcore 3.1 C# 微信小程序发送订阅消息
		一.appsettings.json定义小程序配置信息 "WX": { "AppId": "wx88822730803edd44", &qu ... 
- 微信小程序发送模板消息
		微信小程序发送模板消息 标签(空格分隔): php 看小程序文档 [模板消息文档总览]:https://developers.weixin.qq.com/miniprogram/dev/framewo ... 
随机推荐
- Eureka服务发现Discovery
			功能: 对于注册进Eureka里面的微服务,可以通过服务发现来获得该服务的信息 修改controller 主启动类加@EnableDiscoveryClient注解 
- Python列表函数和方法
			Python列表函数和方法: 函数: len(列表名): 返回列表长度 # len(列表名): # 返回列表长度 lst = [1,2,3,'a','b','c'] print("lst 列 ... 
- 将"089,0760,009"变为 89,760,9
			remove_zeros = lambda s: ','.join(map(lambda sub: str(int(sub)), s.split(','))) remove_zeros("0 ... 
- java反序列化——apache-shiro复现分析
			本文首发于“合天智汇”公众号 作者:Fortheone 看了好久的文章才开始分析调试java的cc链,这个链算是java反序列化漏洞里的基础了.分析调试的shiro也是直接使用了cc链.首先先了解一些 ... 
- 4.9 省选模拟赛 划分序列 二分 结论 树状数组优化dp
			显然发现可以二分. 对于n<=100暴力dp f[i][j]表示前i个数分成j段对于当前的答案是否可行. 可以发现这个dp是可以被优化的 sum[i]-sum[j]<=mid sum[i] ... 
- Nginx使用中遇到的问题记录
			问题一.关于空格 nginx配置对空格十分敏感,在关键字和符号的前后,一定记得有空格(或换行).一个典型的场景是 if { } 语句,大括号前后要有空格,否则可能出现非预期行为. 问题二.关于serv ... 
- 【好文推荐】黑莓OS手册是如何详细阐述底层的进程和线程模型的?
			「MoreThanJava」 宣扬的是 「学习,不止 CODE」,本系列 Java 基础教程是自己在结合各方面的知识之后,对 Java 基础的一个总回顾,旨在 「帮助新朋友快速高质量的学习」. 当然 ... 
- [转]Nginx限流配置
			原文:https://www.cnblogs.com/biglittleant/p/8979915.html 作者:biglittleant 1. 限流算法 1.1 令牌桶算法 算法思想是: 令牌以固 ... 
- .net core MongoDB 初试
			是这样的,我们有一个场景,另一个服务器是写到MongoDB里面,我们的MVC页面要展示,需要分页展示 自己写了一个DAL public class MongoConnect { public stri ... 
- 【HNOI2010】弹飞绵羊 题解(分块)
			前言:其实这个题是用LCT做的,但蒟蒻因为太弱了,只会分块QAQ. ----------------------------- 题目链接 题目大意:给定$n$个装置,每个装置有弹力系数$k_i$,即在 ... 
