赞
踩
新建云函数
'use strict';
exports.main = async (event, context) => {
//event为客户端上传的参数
console.log('event : ', event)
let signature = event.queryStringParameters.signature
let timestamp = event.queryStringParameters.timestamp
let nonce = event.queryStringParameters.nonce
let echostr = event.queryStringParameters.echostr
//返回数据给客户端
return echostr
};
配置函数URL
配置公众号服务器
配置测试号
https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。