mirror of
https://github.com/dromara/payment-spring-boot.git
synced 2026-03-13 21:33:41 +08:00
微信支付V3中的坑
This commit is contained in:
@@ -3,6 +3,11 @@
|
||||
- [Java中的微信支付(1):API V3版本签名详解](https://mp.weixin.qq.com/s/iiTCr57FgbAb6s0P0hT-9Q)
|
||||
- [Java中的微信支付(2):API V3 微信平台证书的获取与刷新](https://mp.weixin.qq.com/s/O_YcnIRcl2MltElBupm3Hg)
|
||||
- [Java中的微信支付(3):API V3对微信服务器响应进行签名验证](https://mp.weixin.qq.com/s/cb2eTTRjHifNYUGpQETMCQ)
|
||||
### 微信支付V3中的坑
|
||||
- 代金券制券后不能修改,所以一定要注意
|
||||
- 代金券激活券和制券要有一定的间隔时间,官方说是1分钟
|
||||
- 发券不需要靠微信服务号,官方的描述是错误的,有一个支持微信登录的appid就行了
|
||||
- 不要过分相信微信文档,微信文档不一定是真的,要问就问他们客服
|
||||
|
||||
## 支付宝
|
||||
|
||||
|
||||
25
pom.xml
25
pom.xml
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user