Azure.Identity.AuthorizationCodeCredential
Authenticates by redeeming an authorization code previously obtained from Microsoft Entra ID. See
for more information
about the authorization code authentication flow.
namespace Azure.Identity
{
public class AuthorizationCodeCredential
{
protected AuthorizationCodeCredential();
public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode);
public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode, AuthorizationCodeCredentialOptions options);
public AuthorizationCodeCredential(string tenantId, string clientId, string clientSecret, string authorizationCode, TokenCredentialOptions options);
}
}