gpt4 book ai didi

oauth-2.0 - Active Directory 是否不支持使用 PKCE 的授权代码流?

转载 作者:行者123 更新时间:2023-12-03 21:16:07 25 4
gpt4 key购买 nike

我尝试使用当前推荐的 PKCE 授权代码流从 Active Directory 收集访问 token 。客户端将是一个公共(public) Angular SPA,这是选择流程的原因。

收集 openid 配置表单 AD 以及用户的授权代码效果很好。
但我无法从以下端点请求访问 token :

https://login.microsoftonline.com/{tenantId}/oauth2/token.

我试图在 Postman 中重建请求:
POST /7e8c2868-7490-4dd7-82b7-f5ec29222d30/oauth2/token HTTP/1.1
Host: login.microsoftonline.com
Accept: application/json, text/plain, */*
Content-Type: application/x-www-form-urlencoded
Cache-Control: no-cache

grant_type=authorization_code
code=...
code_verifier=...
client_id=...
redirect_uri=...

...最终得到以下消息:
{
"error": "invalid_client",
"error_description": "AADSTS7000218: The request body must contain the following parameter: 'client_assertion' or 'client_secret'.\r\nTrace ID: ed0413ad-89f1-4a2b-8d68-e23498701800\r\nCorrelation ID: deb53b0d-5398-4f72-a9a5-6c0863547b99\r\nTimestamp: 2020-03-06 09:30:36Z",
"error_codes": [
7000218
],
"timestamp": "2020-03-06 09:30:36Z",
"trace_id": "ed0413ad-89f1-4a2b-8d68-e23498701800",
"correlation_id": "deb53b0d-5398-4f72-a9a5-6c0863547b99",
"error_uri": "https://login.microsoftonline.com/error?code=7000218"
}

这看起来很奇怪,因为带有 PKCE 的身份验证流程的官方规范不需要 client_secret 或 client_assertion。这仅对默认身份验证流程是必需的。

AD 实现有问题还是我配置错误?

Web 客户端的 list 如下所示:
{
"id": "...",
"acceptMappedClaims": null,
"accessTokenAcceptedVersion": null,
"addIns": [],
"allowPublicClient": true,
"appId": "...",
"appRoles": [],
"oauth2AllowUrlPathMatching": false,
"createdDateTime": "...",
"groupMembershipClaims": null,
"identifierUris": [],
"informationalUrls": {
"termsOfService": null,
"support": null,
"privacy": null,
"marketing": null
},
"keyCredentials": [],
"knownClientApplications": [],
"logoUrl": null,
"logoutUrl": null,
"name": "...",
"oauth2AllowIdTokenImplicitFlow": false,
"oauth2AllowImplicitFlow": false,
"oauth2Permissions": [],
"oauth2RequirePostResponse": false,
"optionalClaims": null,
"orgRestrictions": [],
"parentalControlSettings": {
"countriesBlockedForMinors": [],
"legalAgeGroupRule": "Allow"
},
"passwordCredentials": [],
"preAuthorizedApplications": [],
"publisherDomain": "...",
"replyUrlsWithType": [
{
"url": "http://localhost:4200",
"type": "Web"
}
],
"requiredResourceAccess": [
{
"resourceAppId": "00000003-0000-0000-c000-000000000000",
"resourceAccess": [
{
"id": "...",
"type": "Scope"
}
]
}
],
"samlMetadataUrl": null,
"signInUrl": null,
"signInAudience": "AzureADMyOrg",
"tags": [],
"tokenEncryptionKeyId": null
}

我的应用程序在 AD 中注册为公共(public)应用程序。

在此之前发送的身份验证请求如下所示:
GET /.../oauth2/authorize
response_type=code
&client_id=...
&state=...
&redirect_uri=http%3A%2F%2Flocalhost%3A4200
&scope=openid%20user_impersonation%20offline_access
&code_challenge=...
&code_challenge_method=...
&nonce=...

Host: login.microsoftonline.com

最佳答案

2021 年更新
Microsoft 终于更新了他们的门户,因此我们现在有了一个 UI,可以使用 PKCE 正确配置授权代码流。
您所要做的就是打开您注册的 AAD 应用程序的身份验证页面。在那里,您可以通过单击左侧的按钮添加新平台:
Add a SPA platform to your AAD App
选择新的单页应用程序磁贴并输入您的重定向 url。
上一个答案( list )
我刚刚在 @azure/msal-browser 中找到了答案包裹。目前,Azure AD 似乎正在努力支持此身份验证流程。要激活它,您必须为他们最近添加的重定向 url 设置一个新类型。
要将授权代码流与 PKCE 与 Azure Active Directory 一起使用,您需要:

  • 设置将网络平台添加到您的 azure 广告应用程序并添加您的重定向 url。
  • 将这些重定向 URL 的类型从“Web”更改为“Spa”。这必须在 Manifest 中完成。更改它将使 url 从身份验证页面中消失。但这没关系,因为它仍然存在于 Manifest 中。
  • 将 Web 应用程序视为公共(public)客户端(身份验证 > 高级设置 > 默认客户端类型 - "is")。

  • 现在 token 端点不需要 client_secretclient_assertion了。

    关于oauth-2.0 - Active Directory 是否不支持使用 PKCE 的授权代码流?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60561556/

    25 4 0
    Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
    广告合作:1813099741@qq.com 6ren.com