- 授权协议: MIT
- 开发语言: Java
- 操作系统: 跨平台
- 软件首页: https://github.com/ihaolin/alipay
- 软件文档: https://github.com/ihaolin/alipay/blob/master/README.md
- 官方下载: https://github.com/ihaolin/alipay/releases
软件介绍
alipay是一款轻量的支付宝组件。
包引入:
<dependency> <groupId>me.hao0</groupId> <artifactId>alipay-core</artifactId> <version>1.2.0</version> </dependency>
业务系统与支付宝系统交互图:
基本用法:
Alipay alipay = AlipayBuilder .newBuilder(merchantId, secret) .config1(...) // 其他可选配置 ... .build(); alipay.module().api();
已实现的组件:
支付
pay();退款
refund();验证
verify()。API文档这里。
