05 2023 档案
摘要:# 微信公众号开发 ## 准备工作 你要有一个微信公众号,一个内网穿透工具 ## 相关网站 - 微信公众号:https://mp.weixin.qq.com/ - 官网文档:https://developers.weixin.qq.com/doc/offiaccount/Basic_Informat
阅读全文
摘要:# 微信红包 ## 准备工作 微信商家开通支付功能、微信公众号、开通红包功能 ## 相关网站 - 微信支付: https://pay.weixin.qq.com/ - 签名生成算法:https://pay.weixin.qq.com/wiki/doc/api/tools/cash_coupon.ph
阅读全文
摘要:
# Three加载3D模型贴图 ## 准备阶段 1. 3D模型 2. three 库文件 3. 纹理图片 ## 相关资料 - 官方开发文档: https://threejs.org/docs - 官网编辑3D模型:https://threejs.org/editor/ 可以在这里创建一个3D模型导出
阅读全文
![Three加载3D模型贴图](https://img2023.cnblogs.com/blog/1473548/202305/1473548-20230520165133613-117661370.png)
摘要:/** * @description: 微信接口地址枚举 * @author: Mr.Fang * @create: 2023-05-18 **/ public enum WxEnum { BASIC_URL("小程序与公众号", "https://api.weixin.qq.com", ""),
阅读全文
摘要:自签SSL证书 key 私钥 = 明文--自己生成(genrsa ) csr 公钥 = 由私钥生成 crt 证书 = 公钥 + 签名(自签名或者由CA签名) 生成私钥 需要输入密码两次 12345678 (随便输) openssl genrsa -des3 -out server.pass.key
阅读全文
摘要:官网文档地址:获取小程序码 package test; import com.alibaba.fastjson.JSONObject; import com.fasterxml.jackson.core.JsonProcessingException; import com.fasterxml.ja
阅读全文