Modifica

Condividi tramite


InteractiveRequest type

Request object passed by user to configure acquireTokenInteractive API

type InteractiveRequest = Partial<
  Omit<CommonAuthorizationUrlRequest, "scopes" | "storeInCache">
> & {
  errorTemplate?: string
  loopbackClient?: ILoopbackClient
  openBrowser: (url: string) => Promise<void>
  scopes?: string[]
  successTemplate?: string
  windowHandle?: Buffer
}