gpt4 book ai didi

azure - 授权客户端浏览Office365 Graph API

转载 作者:行者123 更新时间:2023-12-02 10:46:18 29 4
gpt4 key购买 nike

我正在尝试开发一个网络应用程序来让用户浏览他的 Active Directory 联系人。
我有两个帐户:一个用于注册应用程序(开发者帐户),另一个是有权访问 Office365 的普通用户(用户帐户)。
我已经按照Azure AD Graph API documentation设置了一个Javascript客户端.
到目前为止,我可以提示用户登录并检索访问 token ,但是当我尝试发出请求时,我总是收到 401 错误。
我对 Azure 还很陌生,所以我不太明白问题是出在我的应用程序配置中还是我的代码中。
我可以浏览Graph API explorer使用我的用户帐户,所以我不认为他缺少访问它的授权。
我真的很困惑。

我尝试添加我正在执行的所有步骤,希望有人能指出错误。

请求 1:

Url: https://login.windows.net/{my tenant id or common (both are working) }/oauth2/authorize

Method: GET

Params:
redirect_uri // my redirect url, the same I registered in my application. It is just a page that returns the content of the URL
client_id // my client id
response_type // code
state // a random generated string, not required, but reccomanded
resource // https://graph.windows.net

响应 1:

code           // A long string
state // The string I sent in the request
session_state // Another string

请求 2:

Url: https://login.windows.net/{my tenant id or common (both are working) }/oauth2/token

Method: POST

Params:
redirect_uri // it won't be necessary, but in some post they reccomand to add it
client_id // my client id
client_secret // my client secret
code // the code retrieved from Request 1
grant_type // authorization_code
state // a random generated string
resource // https://graph.windows.net

响应 2:

token_type     // Bearer
access_token // a long token
id_token // exploring it with the JWT tool, shows it has the correct app id
refresh_token // a long code
resource // the same I sent in the request
scope // Directory.Read UserProfile.Read
expires_in
expires_on
a couple of other irrelevant keys

请求 3:

Url: https://graph.windows.net/{the domain the logged account belong to}/contacts

Method: GET

Headers:
Authorization: Bearer {the access token retrieved from request 2}

Params:
api-version = 1.5 // The value suggested in the documentation.

响应 3:

{
"odata.error": {
"code": "Authentication_MissingOrMalformed",
"message": {
"lang": "en",
"value": "Access Token missing or malformed."
},
"values": null
}
}

这是我的访问 token 的内容:

{
typ: "JWT",
alg: "RS256",
x5t: "foofoofoofoo"
}.
{
aud: "https://graph.windows.net",
iss: "https://sts.windows.net/<SOMEGUID>/",
iat: 1418224761,
nbf: 1418224761,
exp: 1418228661,
ver: "1.0",
tid: "<SOMEGUID>",
amr: [
"pwd"
],
idp: "https://sts.windows.net/<SOMEGUID>/",
email: "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="4b26323e382e392e262a22270b2824253f24382465282426" rel="noreferrer noopener nofollow">[email protected]</a>",
unique_name: "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="610c1814120413040c00080d21020e0f150e120e4f020e0c" rel="noreferrer noopener nofollow">[email protected]</a>",
sub: "barbarbarbar",
altsecid: "<an-id>",
family_name: "Last Name",
given_name: "First Name",
appid: "<MY APP ID>",
appidacr: "1",
scp: "Directory.Read UserProfile.Read",
acr: "1"
}

回答

因此,看起来用户必须拥有“可以同意”授权才能对其自己的事件目录进行身份验证,而这只能由管理员提供。
我在 MSDN 论坛上发布了相同的请求,并得到了相同的答案。
我要真诚地感谢@Jason Johnston 和@Dan Kershaw,因为这个问题让我抓狂,如果没有他们的帮助,我永远无法解决它。
不幸的是,我只能将赏金授予其中一个人,因此我决定将其授予@Jason Johnston,以感谢他在本次讨论和另一次讨论中对我的支持所表现出的巨大耐心。

最佳答案

我相信,如果您确实想要浏览 Active Directory,而不仅仅是读取经过身份验证的用户的个人资料,则需要获得 Web 应用程序的管理员同意。请参阅http://msdn.microsoft.com/en-us/library/azure/b08d91fa-6a64-4deb-92f4-f5857add9ed8#BKMK_Graph

如果您已经知道这一点,那么可能是您注册应用程序或 token 本身的方式存在问题。确保您已在应用程序注册中为每个链接选择了适当的权限。如果这些看起来正确,那么您可以检查 token 。这里有一个方便的小标记解析器:http://jwt.calebb.net/ 。只需粘贴您的 token 值,它就会显示解码后的 JSON。查看范围或 scp 参数。

{
"typ": "JWT",
"alg": "RS256",
"x5t": "asdfsadfasdfsa"
}

{
"aud": "https://graph.windows.net/",
"iss": "https://sts.windows.net/<SOMEGUID>",
"iat": 1418158549,
"nbf": 1418158549,
"exp": 1418162449,
"ver": "1.0",
"tid": "<SOMEGUID>",
"amr": [
"pwd"
],
"oid": "<SOMEGUID>",
"upn": "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="bddcd9d0d4d3fdded2d3c9d2ced293ded2d0" rel="noreferrer noopener nofollow">[email protected]</a>",
"unique_name": "<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="5233363f3b3c12313d3c263d213d7c313d3f" rel="noreferrer noopener nofollow">[email protected]</a>",
"sub": "askdljalsdfs",
"puid": "1003BFFD88937280",
"family_name": "Administrator",
"given_name": "MOD",
"appid": "<YOUR APP ID>",
"appidacr": "0",
"scp": "Directory.Read user_impersonation UserProfile.Read",
"acr": "1"
}

关于azure - 授权客户端浏览Office365 Graph API,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27349815/

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