1.购买https安全证书,可以使用阿里云服务后台免费版的测试
在阿里云控制台首页点击更多按钮 产品与服务 在弹出的服务列表弹窗内找到 安全 --- ssl证书 选择对应的免费版
https://yq.aliyun.com/articles/637307
2.配置https
我的另一篇文章https://blog.csdn.net/cscscssjsp/article/details/90174954
3.配置后台接口访问
location /weixin {
rewrite ^/weixin(.*)$ $1 break; #所有对后端的请求加一个api前缀方便区分,真正访问的时候移除这个前缀
proxy_pass http://localhost:9001; # 微信https后台
}
4.使用
在微信小程序后台 配置你的https域名 ,然后在小程序项目中 使用 https://xxx.xxx.xxx/weixin/接口名称