AppTokenProviderParameters type
Input object for the IAppTokenProvider extensiblity. MSAL will create this object, which can be used to help create an AppTokenProviderResult.
- correlationId - the correlation Id associated with the request
- tenantId - the tenant Id for which the token must be provided
- scopes - the scopes for which the token must be provided
- claims - any extra claims that the token must satisfy
type AppTokenProviderParameters = {
claims?: string
correlationId?: string
scopes: string[]
tenantId: string
}