12345678910111213141516171819202122232425262728293031323334 |
- <?php
- namespace refill\taoxun;
- use mtopcard;
- class config
- {
- const ORDER_URL = 'http://39.101.178.136:8911/api/hf/order/submit';
- const QUERY_URL = 'http://39.101.178.136:8911/api/order/query';
- const BALANCE_URL = 'http://39.101.178.136:8911/api/account/balance';
- const APP_ID = 'OxsfUz4EmK';
- const APP_SECRET = 'iBrdSRAaAHfNyAMQ';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_taoxun.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 100 => 100256,
- 200 => 100257,
- 300 => 100308,
- 500 => 100307,
- ],
- mtopcard\ChinaUnicomCard => [
- ],
- mtopcard\ChinaTelecomCard => [
- ]
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|