版本跟随升级2.0.8

This commit is contained in:
egan
2018-05-06 12:35:11 +08:00
parent a7aa419234
commit 37dc9075e8
18 changed files with 113 additions and 69 deletions

View File

@@ -39,8 +39,8 @@ public class PayPalPayController {
@PostConstruct
public void init() {
PayPalConfigStorage storage = new PayPalConfigStorage();
storage.setClientID("AUWunqrIzeSLQTQqRp_gQwkt1vLRcVa5kJIO4mp0ZvQnTreLmxaji9bqOFpqz-0h8mdeQpYxix6g_PRD");
storage.setClientSecret("EJFAZoD_ZG7PoRutRhX93TmeWs-DQ-PjdBkgr0j4GZA6lqAgmS2Z7yKQWqnTP5O74KqBaYOZnUEcq3Ug");
storage.setClientID("商户id");
storage.setClientSecret("商户密钥");
storage.setTest(true);
//发起付款后的页面转跳地址
storage.setReturnUrl("http://127.0.0.1:8088/pay/success");

View File

@@ -38,6 +38,7 @@ public class PayoneerPayController {
configStorage.setInputCharset("utf-8");
configStorage.setUserName("PayoneerPay 用户名");
configStorage.setApiPassword("PayoneerPay API password");
// 是否为测试账号,沙箱环境
configStorage.setTest(true);
service = new PayoneerPayService(configStorage);