12 lines
566 B
PHP
12 lines
566 B
PHP
<?php
|
|
return [
|
|
'client_id' => '<Anwendungs-ID (Client)>',
|
|
'client_secret' => '<Zertifikate & Geheimnisse aktuelles Feld "Wert">',
|
|
'redirect_uri' => '<URL-Webpage>/callback.php',
|
|
'scopes' => 'offline_access user.read calendars.readwrite',
|
|
'auth_url' => 'https://login.microsoftonline.com/<Verzeichnis-ID (Mandant)>/oauth2/v2.0/authorize',
|
|
'token_url' => 'https://login.microsoftonline.com/<Verzeichnis-ID (Mandant)>/oauth2/v2.0/token',
|
|
'graph_url' => 'https://graph.microsoft.com/v1.0',
|
|
'token_storage' => __DIR__ . '/tokens.json',
|
|
];
|