123456789101112131415161718192021222324 |
- <?php
- namespace refill\zhenqi1m;
- class config
- {
- //api https://www.showdoc.com.cn/fanlicainiao?page_id=6621636142087435
- //996 2
- const APP_KEY = 'yezi1';
- const ORDER_URL = 'https://cainiaoapi.fanli.com/cnapi/cebbank/getCouponCodeV2?app_key=' . self::APP_KEY;
- const QUERY_URL = 'https://cainiaoapi.fanli.com/cnapi/cebbank/getRechargeOrder?app_key=' . self::APP_KEY;
- const BALANCE_URL = 'https://cainiaoapi.fanli.com/cnapi/cebbank/getChannelBalance?app_key=' . self::APP_KEY;
- const APP_SECRET = 'e53218';
- const TOKEN = '63644a7ae53218e7900f755265acf96a';
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhenqi1m.php";
- const ExtHeaders = ['Content-Type: application/json; charset=utf-8'];
- const product_code = [
- 30 => 'apihf_30',
- 50 => 'apihf_50',
- 100 => 'apihf_100',
- 200 => 'apihf_200',
- ];
- }
|