添加后台代理代码
This commit is contained in:
30
codes/agent/game/api/payment/alipay/config.php
Normal file
30
codes/agent/game/api/payment/alipay/config.php
Normal file
@@ -0,0 +1,30 @@
|
||||
<?php
|
||||
$config = array (
|
||||
//应用ID,您的APPID。
|
||||
'app_id' => "",
|
||||
|
||||
//商户私钥,您的原始格式RSA私钥
|
||||
'merchant_private_key' => "",
|
||||
|
||||
'merchant_private_key_filepath' => '',
|
||||
|
||||
//异步通知地址
|
||||
'notify_url' => "http://工程公网访问地址/alipay.trade.wap.pay-PHP-UTF-8/notify_url.php",
|
||||
|
||||
//同步跳转
|
||||
'return_url' => "http://mitsein.com/alipay.trade.wap.pay-PHP-UTF-8/return_url.php",
|
||||
|
||||
//编码格式
|
||||
'charset' => "UTF-8",
|
||||
|
||||
//签名方式
|
||||
'sign_type'=>"RSA2",
|
||||
|
||||
//支付宝网关
|
||||
'gatewayUrl' => "https://openapi.alipay.com/gateway.do",
|
||||
|
||||
//支付宝公钥,查看地址:https://openhome.alipay.com/platform/keyManage.htm 对应APPID下的支付宝公钥。
|
||||
'alipay_public_key' => "",
|
||||
|
||||
'alipay_public_key_filepath' => '',
|
||||
);
|
||||
Reference in New Issue
Block a user