截流自动化的商城平台
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.

index.php 247B

1234567891011
  1. <?php
  2. include __DIR__ . '/init.php';
  3. if (GRANTTYPE == 'client_credentials') {
  4. include_once __DIR__ . '/ClientMode/callback.php';
  5. }
  6. if (GRANTTYPE == 'authorization_code') {
  7. include_once __DIR__ . '/AuthorizationCodeMode/callback.php';
  8. }