截流自动化的商城平台
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

init.php 401B

1234567891011121314
  1. <?php
  2. include dirname(__DIR__) . '/Lib/Autoloader.php';
  3. use App\Config\YlyConfig;
  4. $grantType = 'client_credentials'; //'client_credentials' 自有型应用; 'authorization_code' 开放型应用
  5. define('GRANTTYPE', $grantType);
  6. $clientId = ''; //应用id
  7. $clientSecret = ''; //应用密钥
  8. $config = new YlyConfig($clientId, $clientSecret);