123456789101112131415161718 |
- <?php
- namespace refill\tianrui;
- 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 = '7q0uPQMdji';
- const APP_SECRET = 'XHqDEjiqfhwqdAoz';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_tianrui.php";
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- const ERRCODES = ['-10', '-12', '-13', '-14', '-15', '-16', '-18', '-21'];
- }
|