|
@@ -6,15 +6,18 @@ namespace refill\xiaochuang;
|
|
|
class config
|
|
|
{
|
|
|
const ORDER_URL = 'http://1.116.75.33/api/flow/recharge';
|
|
|
- const QUERY_URL= 'http://1.116.75.33/api/flow/result';
|
|
|
+ const QUERY_URL = 'http://1.116.75.33/api/flow/result';
|
|
|
|
|
|
- const APP_ID= '8e4adec235d11ba4d335d9b8aead1e4b';
|
|
|
+ const APP_ID = '8e4adec235d11ba4d335d9b8aead1e4b';
|
|
|
const KEY = '3dee2dfb2eef18385754e15b50718153';
|
|
|
const code = [
|
|
|
- 50=>1, 100=>2,200=>3, 300=>4, 400=>6, 500=>5
|
|
|
+ 50 => 1, 100 => 2, 200 => 3, 300 => 4, 400 => 6, 500 => 5
|
|
|
];
|
|
|
const product = [
|
|
|
- 50=>'1_50', 100=>'1_100',200=>'1_200', 300=>'1_300', 400=>'1_400', 500=>'1_500'
|
|
|
+ 50 => '1_50', 100 => '1_100', 200 => '1_200', 300 => '1_300', 400 => '1_400', 500 => '1_500'
|
|
|
];
|
|
|
const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
|
|
|
+
|
|
|
+ //回调地址,由上游手动在后台设置的。
|
|
|
+ const NOTIFY_URL = BASE_SITE_URL."/mobile/callback/refill_xiaochuang.php";
|
|
|
}
|