payTest.php 885 B

12345678910111213141516171819
  1. <?php
  2. // 支付配置
  3. return [
  4. 'pagsmilepay' => [
  5. 'cash_app_id' => 'B3F16E6841D342CA8CC2ADA6A4C33A42', // 提现appid
  6. 'cashSecretKey' => 'PNLPqctvDz', // 提现秘钥
  7. 'app_id' => '16655639662902937', // 充值appid
  8. 'SecretKey' => 'Luxpag_sk_8852946307a55a9179831c8db05b40cbeb2e1a51460b3967ea007d2f70b89902', // 充值秘钥
  9. 'pay_url' => 'https://gateway-test.pagsmile.com', // 充值请求url
  10. 'cash_url' => 'https://sandbox.transfersmile.com', // 提现请求url
  11. 'notify' => 'http://spain.2v1.cn/api/Pagsmilepay/notify', // 支付异步回调
  12. 'syncNotify' => 'http://spain.2v1.cn/api/Pagsmilepay/sync_notify', // 支付同步回调
  13. 'cashierNotify' => 'http://spain.2v1.cn/api/Pagsmilepay/cash_notify' // 提现异步回调
  14. ],
  15. ];