Package version:
Creates an instance of DeviceCodeCredential with the details needed to initiate the device code authorization flow with Microsoft Entra ID.
A message will be logged, giving users a code that they can use to authenticate once they go to https://microsoft.com/devicelogin
Developers can configure how this message is shown by passing a custom userPromptCallback:
import { DeviceCodeCredential } from "@azure/identity";
const credential = new DeviceCodeCredential({
tenantId: process.env.AZURE_TENANT_ID,
clientId: process.env.AZURE_CLIENT_ID,
userPromptCallback: (info) => {
console.log("CUSTOMIZED PROMPT CALLBACK", info.message);
},
});
Optionaloptions: DeviceCodeCredentialOptionsOptions for configuring the client which makes the authentication requests.
Authenticates with Microsoft Entra ID and returns an access token if successful. If authentication fails, a CredentialUnavailableError will be thrown with the details of the failure.
If the token can't be retrieved silently, this method will always generate a challenge for the user.
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 Microsoft Entra ID and returns an access token if successful. If authentication fails, a CredentialUnavailableError will be thrown with the details of the failure.
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.
Enables authentication to Microsoft Entra ID using a device code that the user can enter into https://microsoft.com/devicelogin.