I'm trying to port a powershell module to .Net standard. One thing I notice is that the UserPasswordCredential class is not present in the .Net standard library. Is it not possible to perform a username/password flow login using adal in .Net Standard/Core?
相关问题
- Register MicroServices in Azure Active Directory (
- Azure Graph 403 Authorization_RequestDenied using
- Azure AD OAuth client credentials grant flow with
- Calling Graph API through ViewModel in MVC Web App
- “Unauthorized” when invoking an API App from Azure
相关文章
- How to 'Grant Permissions' Using Azure Act
- Verify a domain name in Azure Active Directory
- The application named HTTPS://test113.onmicrosoft.
- AADSTS50011: The reply url specified in the reques
- Authorization_IdentityNotFound on Microsoft Graph
- How to issue tokens from Azure AD in a Node.js App
- How to add simple authentication to azure mobile/w
- Azure Active Directory: Add Service Principal to D
Yes,
UserPasswordCredential
is not available for .Net Core. However, as a workaround you can construct the HTTP request directly. More detail, you can refer the thread here.