1234567891011121314151617181920212223 |
- <?php
- namespace refill\cangbu;
- use mtopcard;
- class config
- {
- //yd 950 dl949
- const ORDER_URL = 'https://api.irecycle.top/queryBuy';
- const QUERY_URL= 'https://api.irecycle.top/queryBizOrder';
- const BALANCE_URL= 'https://api.irecycle.top//queryBalance';
- const MCH_ID= '112';
- const KEY = 'zs53xG61NinhlrXskhR0xnAaOyM7yG';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_cangbu.php";
- const operator = [
- mtopcard\ChinaMobileCard => 'MOBILE',
- mtopcard\ChinaUnicomCard => 'UNICOM',
- mtopcard\ChinaTelecomCard => 'TELECOM'
- ];
- const ExtHeaders = ['Content-Type: application/x-www-form-urlencoded' , 'Accept: application/json;charset=UTF-8'];
- }
|