微信支付V3中的坑

This commit is contained in:
felord.cn
2020-12-10 22:59:09 +08:00
parent b4c02b49f1
commit 4094d4fb19
2 changed files with 30 additions and 0 deletions

View File

@@ -3,6 +3,11 @@
- [Java中的微信支付1API V3版本签名详解](https://mp.weixin.qq.com/s/iiTCr57FgbAb6s0P0hT-9Q)
- [Java中的微信支付2API V3 微信平台证书的获取与刷新](https://mp.weixin.qq.com/s/O_YcnIRcl2MltElBupm3Hg)
- [Java中的微信支付3API V3对微信服务器响应进行签名验证](https://mp.weixin.qq.com/s/cb2eTTRjHifNYUGpQETMCQ)
### 微信支付V3中的坑
- 代金券制券后不能修改,所以一定要注意
- 代金券激活券和制券要有一定的间隔时间官方说是1分钟
- 发券不需要靠微信服务号官方的描述是错误的有一个支持微信登录的appid就行了
- 不要过分相信微信文档,微信文档不一定是真的,要问就问他们客服
## 支付宝

25
pom.xml
View File

@@ -11,6 +11,31 @@
<name>payment-spring-boot</name>
<description>payment sdk</description>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
<comments>A business-friendly OSS license</comments>
</license>
</licenses>
<developers>
<developer>
<name>felord</name>
<email>felord@qq.com</email>
<organization>felord.cn</organization>
</developer>
</developers>
<scm>
<tag>payment-spring-boot-1.0.0.RELEASE</tag>
<url>https://github.com/NotFound403/payment-spring-boot</url>
<connection>scm:git:https://github.com/NotFound403/payment-spring-boot.git</connection>
<developerConnection>scm:git:https://github.com/NotFound403/payment-spring-boot.git</developerConnection>
</scm>
<modules>
<module>payment-spring-boot-autoconfigure</module>
<module>payment-spring-boot-starter</module>