Skip to content
This repository has been archived by the owner on Jul 6, 2022. It is now read-only.

Replace the 'scope' option in code snippet #32

Merged
merged 1 commit into from
Sep 16, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion docs/providers/azure-ad.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,11 @@ providers: [
clientId: process.env.AZURE_AD_CLIENT_ID,
clientSecret: process.env.AZURE_AD_CLIENT_SECRET,
tenantId: process.env.AZURE_AD_TENANT_ID, // omit this if it was omitted above.
scope: 'offline_access User.Read',
authorization: {
params: {
scope: 'offline_access User.Read',
},
},
}),
]
...
Expand Down