本文介绍了通过请求在Azure AD中对ASP.NET网页进行身份验证的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我正在开发一个具有自定义登录页面的本地ASP.NET Web应用程序,以对Azure AD中的用户进行身份验证.我希望通过用户名/密码向Azure AD发出请求,并获得令牌/user_info来对用户进行身份验证,而不会出现Azure AD登录屏幕的提示.
- 有人知道我该如何提出请求?
- 有可能吗?
我正在尝试使用OpenID connect,OAuth,JWT.
解决方案
您可以使用
使用 ROPC
,您可以发送http请求以获取 access_token
和 id_token
.
I'm developing a local ASP.NET web application with a custom login page to authenticate users in Azure AD. I whant to make a request to Azure AD passing the username/password and get the token/user_info to authenticate the user, without prompt the Azure AD login screen.
- Somebody knows how can I make this request?
- Is it possible?
I'm trying to use OpenID connect, OAuth, JWT.
解决方案
You can use ROPC flow.
Use ROPC
, you can send http request to get access_token
and id_token
.
这篇关于通过请求在Azure AD中对ASP.NET网页进行身份验证的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!