config.php 769 B

1234567891011121314151617181920212223
  1. <?php
  2. namespace refill\zhenqi1m;
  3. class config
  4. {
  5. //api https://www.showdoc.com.cn/fanlicainiao?page_id=6621636142087435
  6. //996 2
  7. const APP_KEY = 'yezi1';
  8. const ORDER_URL = 'https://cainiaoapi.fanli.com/cnapi/cebbank/getCouponCodeV2?app_key=' . self::APP_KEY;
  9. const QUERY_URL = 'https://cainiaoapi.fanli.com/cnapi/cebbank/getRechargeOrder?app_key=' . self::APP_KEY;
  10. const APP_SECRET = 'e53218';
  11. const TOKEN = '63644a7ae53218e7900f755265acf96a';
  12. const NOTIFY_URL = BASE_SITE_URL . "/mobile/callback/refill_zhenqi1m.php";
  13. const ExtHeaders = ['Content-Type: application/json; charset=utf-8'];
  14. const product_code = [
  15. 30 => 'apihf_30',
  16. 50 => 'apihf_50',
  17. 100 => 'apihf_100',
  18. 200 => 'apihf_200',
  19. ];
  20. }