1234567891011121314151617181920 |
- <?php
- namespace refill\xunyin;
- class config
- {
- //https://docs.qq.com/doc/DYm5iQmlUb01tVXln
- const PAY_PHONE_URL = 'https://openapi.xunyin.com/openapi/submit';
- const QUERY_URL= 'https://openapi.xunyin.com/openapi/query';
- const BALANCE_URL= 'http://openapi.xunyin.com/openapi/QueryMerchant';
- const CP_ID= '8417';
- const KEY = 'd4317a37ad90bc38cd346c6ad3056a7f';
- const API_IP = NET_IP;
- const NOTIFY_URL = BASE_SITE_URL . "/mobile/refill_xunyin.php";
- const ERR_CODE = [
- '8001','8002','8003','8004','8005','8006','8007','8009','8011','8012','8013','8016','8020','9001','9002','9003','9004','9005','9006'
- ];
- }
|