123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- namespace refill\guantu;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://8.142.121.158:8911/api/hf/order/submit';
- const QUERY_URL = 'http://8.142.121.158:8911/api/order/query';
- const BALANCE_URL = 'http://8.142.121.158:8911/api/account/balance';
- const APP_ID = 'sprTIuIsst';
- const APP_SECRET = 'xixZCAZjsMLjCjoR';
- // const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_guantu.php";
- const NOTIFY_URL = "https://www.xyzshops.cn/mobile/signature.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 30 => 100001,
- 50 => 100002,
- 100 => 100003,
- 200 => 100004,
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100009,
- 50 => 100010,
- 100 => 100011,
- 200 => 100012,
- ],
- mtopcard\ChinaTelecomCard => [
- 30 => 100013,
- 50 => 100014,
- 100 => 100015,
- 200 => 100016,
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|