当前位置:   article > 正文

unicloud配置微信公众号

unicloud配置微信公众号

新建云函数

'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
};
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11

配置函数URL

在这里插入图片描述

配置公众号服务器
在这里插入图片描述
配置测试号
https://mp.weixin.qq.com/debug/cgi-bin/sandboxinfo?action=showinfo&t=sandbox/index
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小小林熬夜学编程/article/detail/280578
推荐阅读
相关标签
  

闽ICP备14008679号