您可以通过以下的其中一种方式引入 SDK
1,Gradle:
compile 'com.github.yinqiantong:java-sdk:0.0.9'
2,Maven:
<dependency>
<groupId>com.github.yinqiantong</groupId>
<artifactId>java-sdk</artifactId>
<version>0.0.9</version>
</dependency>
3,Jar 包引入:
4,其他:
更多方式,欢迎到 Sonatype 中了解更多
Yinqiantong.create(appId, appSecret)
.createOrder(Options options = Options.newInstance()
.setChannel("1")
.setPlatform("2")
.setMoney(1)
.setClientIp("127.0.0.1")
.setNotifyUrl("https://yinqiantong.com/test")
.setClientOutTradeNo(createClientOutTradeNo());
Yinqiantong.create(appId, appSecret).checkSign(notifyDataStr);
Yinqiantong.create(appId, appSecret).createSign(yourData);