Note

Access to this page requires authorization. You can try signing in or .

Access to this page requires authorization. You can try .

Configuration type

Package:
@azure/msal-node

Use the configuration object to configure MSAL and initialize the client application object

  • auth: this is where you configure auth elements like clientID, authority used for authenticating against the Microsoft Identity Platform
  • broker: this is where you configure broker options
  • cache: this is where you configure cache location
  • system: this is where you can configure the network client, logger
  • telemetry: this is where you can configure telemetry options
type Configuration = {
 auth: NodeAuthOptions
 broker?: BrokerOptions
 cache?: CacheOptions
 system?: NodeSystemOptions
 telemetry?: NodeTelemetryOptions
}