AddOn/Calender_Office365_User/readme.md aktualisiert
This commit is contained in:
parent
2db3afd8c7
commit
e1e73d15aa
|
|
@ -35,7 +35,7 @@ Dieses Projekt bietet eine einfache PHP-Integration zur Verwaltung von Terminen
|
|||
- Konfiguriere:
|
||||
- **Redirect URI**: z. B. `https://deine-domain.de/callback.php`
|
||||
- **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**
|
||||
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>',
|
||||
'redirect_uri' => '<Deine Redirect-URL>',
|
||||
'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',
|
||||
];
|
||||
```
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue