UNPKG

@azure/msal-node

Version:
41 lines (38 loc) 1.52 kB
/* * Copyright (c) Microsoft Corporation. All rights reserved. * Licensed under the MIT License. */ import { CommonAuthorizationCodeRequest } from "@azure/msal-common/node"; /** * Request object passed by user to acquire a token from the server exchanging a valid authorization code (second leg of OAuth2.0 Authorization Code flow) * @public */ export type AuthorizationCodeRequest = Partial< Omit< CommonAuthorizationCodeRequest, | "scopes" | "redirectUri" | "code" | "authenticationScheme" | "resourceRequestMethod" | "resourceRequestUri" | "storeInCache" > > & { /** * Array of scopes the application is requesting access to. */ scopes: Array<string>; /** * The redirect URI of your app, where the authority will redirect to after the user inputs credentials and consents. It must exactly match one of the redirect URIs you registered in the portal. */ redirectUri: string; /** * The authorization_code that the user acquired in the first leg of the flow. */ code: string; /** * Unique GUID generated by the user that is cached by the user and sent to the server during the first leg of the flow. This string is sent back by the server with the authorization code. The user cached state is then compared with the state received from the server to mitigate the risk of CSRF attacks. See https://datatracker.ietf.org/doc/html/rfc6819#section-3.6. */ state?: string; };