AddOn/Calender_Office365_User/readme.md aktualisiert

This commit is contained in:
olinet 2025-09-07 11:02:10 +02:00
parent 2db3afd8c7
commit e1e73d15aa
1 changed files with 5 additions and 2 deletions

View File

@ -35,7 +35,7 @@ Dieses Projekt bietet eine einfache PHP-Integration zur Verwaltung von Terminen
- Konfiguriere: - Konfiguriere:
- **Redirect URI**: z.B. `https://deine-domain.de/callback.php` - **Redirect URI**: z.B. `https://deine-domain.de/callback.php`
- **API-Berechtigungen**: `offline_access`, `user.read`, `calendars.readwrite` - **API-Berechtigungen**: `offline_access`, `user.read`, `calendars.readwrite`
- Kopiere die **Client-ID** und das **Client-Secret** - Kopiere die **Client-ID**, **Tenant-ID** und das **Client-Secret**
3. **Konfiguration anpassen** 3. **Konfiguration anpassen**
Bearbeite die Datei `config.php`: Bearbeite die Datei `config.php`:
@ -45,7 +45,10 @@ Dieses Projekt bietet eine einfache PHP-Integration zur Verwaltung von Terminen
'client_secret' => '<Dein Client-Secret>', 'client_secret' => '<Dein Client-Secret>',
'redirect_uri' => '<Deine Redirect-URL>', 'redirect_uri' => '<Deine Redirect-URL>',
'scopes' => 'offline_access user.read calendars.readwrite', 'scopes' => 'offline_access user.read calendars.readwrite',
... 'auth_url' => 'https://login.microsoftonline.com/<Deine Verzeichnis-ID (Mandant)>/oauth2/v2.0/authorize',
'token_url' => 'https://login.microsoftonline.com/<Deine Verzeichnis-ID (Mandant)>/oauth2/v2.0/token',
'graph_url' => 'https://graph.microsoft.com/v1.0',
'token_storage' => __DIR__ . '/tokens.json',
]; ];
``` ```