12345678910111213141516171819202122 |
- <?php
- namespace refill\cangbuyd;
- use mtopcard;
- class config
- {
- 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= '220';
- const KEY = '5lEtcVlnQJpEObGYPJF6qf0SqJObB0';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_cangbuyd.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'];
- }
|