1234567891011121314 |
- <?php
-
- include dirname(__DIR__) . '/Lib/Autoloader.php';
- use App\Config\YlyConfig;
-
- $grantType = 'client_credentials';
- define('GRANTTYPE', $grantType);
-
-
- $clientId = '';
- $clientSecret = '';
-
-
- $config = new YlyConfig($clientId, $clientSecret);
|