Creates an instance of the InteractiveBrowserCredential with the details needed to authenticate against Azure Active Directory with a user identity.
Options for configuring the client which makes the authentication request.
Authenticates with Azure Active Directory and returns an access token if successful. If authentication cannot be performed at this time, this method may return null. If an error occurs during authentication, an AuthenticationError containing failure details will be thrown.
If the token can't be retrieved silently, this method will require user interaction to retrieve the token.
The list of scopes for which the token will have access.
The options used to configure any requests this TokenCredential implementation might make.
Authenticates with Azure Active Directory and returns an access token if successful. If authentication cannot be performed at this time, this method may return null. If an error occurs during authentication, an AuthenticationError containing failure details will be thrown.
If the user provided the option disableAutomaticAuthentication
,
once the token can't be retrieved silently,
this method won't attempt to request user interaction to retrieve the token.
The list of scopes for which the token will have access.
The options used to configure any requests this TokenCredential implementation might make.
Generated using TypeDoc
Enables authentication to Azure Active Directory inside of the web browser using the interactive login flow. Enables authentication to Azure Active Directory inside of the web browser using the interactive login flow.
This credential uses the Authorization Code Flow. On NodeJS, it will open a browser window while it listens for a redirect response from the authentication service. On browsers, it authenticates via popups. The
loginStyle
optional parameter can be set toredirect
to authenticate by redirecting the user to an Azure secure login page, which then will redirect the user back to the web application where the authentication started.It's recommended that the AAD Applications used are configured to authenticate using Single Page Applications. More information here: link.
This credential uses the Authorization Code Flow. On NodeJS, it will open a browser window while it listens for a redirect response from the authentication service. On browsers, it authenticates via popups. The
loginStyle
optional parameter can be set toredirect
to authenticate by redirecting the user to an Azure secure login page, which then will redirect the user back to the web application where the authentication started.For Node.js, if a
clientId
is provided, the Azure Active Directory application will need to be configured to have a "Mobile and desktop applications" redirect endpoint. Follow our guide on setting up Redirect URIs for Desktop apps that calls to web APIs.