123456789101112131415161718 |
- <?php
- namespace refill\bingguang_third;
- class config
- {
- const ORDER_URL = 'http://120.79.190.232:8911/api/order/submit';
- const QUERY_URL = 'http://120.79.190.232:8911/api/order/query';
- const BALANCE_URL = 'http://120.79.190.232:8911/api/account/balance';
- const APP_ID = 'lMIQD9hkWG';
- const APP_SECRET = 'nKFiCyiTcZAIXXvx';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_bingguang_third.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|