小说推广数据系统

ZDService.php 503B

123456789101112131415161718192021222324
  1. <?php
  2. namespace App\Services;
  3. class ZDService
  4. {
  5. const VIP_ID = 1960;
  6. const APP_SECRET = 'a774b2cc-335e-2720-0591-3ebbea8305d9';
  7. const ORDER_LIST = 'getorder';
  8. const CHANNEL_LIST = 'getchannels';
  9. const API_BASE_URL = 'https://api.zhangdu520.com/v2/';
  10. const PLATFORM_ID = 4;
  11. const PER_PAGE = 100;
  12. /*
  13. * 获取签名
  14. * */
  15. public static function sign($timestamps)
  16. {
  17. return md5(self::VIP_ID . '&' . self::APP_SECRET . '&' . $timestamps);
  18. }
  19. }