AddOn/Calender_Office365_User/config.php aktualisiert

This commit is contained in:
olinet 2025-09-07 12:37:34 +02:00
parent 228fc5b409
commit e6d6c88536
1 changed files with 4 additions and 4 deletions

View File

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