12345678910111213141516171819202122232425262728293031323334353637 |
- <?php
- namespace refill\shimier;
- use mtopcard;
- class config
- {
- //95
- //接口地址:https://www.showdoc.cc/900133176881927
- const ORDER_URL = 'http://120.79.67.17:8911/api/order/submit';
- const QUERY_URL = 'http://120.79.67.17:8911/api/order/query';
- const BALANCE_URL = 'http://120.79.67.17:8911/api/account/balance';
- const APP_ID = 'b3k6DRwSOw';
- const APP_SECRET = 'kwKiSNinLPGmVcNd';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_shimier.php";
- const PRODUCT = [
- mtopcard\ChinaMobileCard => [
- 50 => 100002,
- 100 => 100003,
- 200 => 100004
- ],
- mtopcard\ChinaUnicomCard => [
- 30 => 100013,
- 50 => 100014,
- 100 => 100015,
- 200 => 100016
- ],
- mtopcard\ChinaTelecomCard => [
- 50 => 100006,
- 100 => 100007,
- 200 => 100008
- ],
- ];
- const ExtHeaders = ['Content-Type:application/x-www-form-urlencoded;charset=utf-8'];
- }
|