【发布时间】:2014-12-08 00:55:46
【问题描述】:
我正在尝试开发一个 web 应用程序来让用户浏览他的 Active Directory 联系人。
我有两个帐户:一个用于注册应用程序(开发人员帐户),另一个是有权访问 Office365 的普通用户(用户帐户)。
我在Azure AD Graph API documentation 之后设置了一个 Javascript 客户端。
到目前为止,我可以提示用户登录并检索访问令牌,但是当我尝试发出请求时,总是收到 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
}
}
这是我的访问令牌的内容:
{
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: "myuseremail@contoso.com",
unique_name: "myuseremail@contoso.com",
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,因为他在这次和另一次讨论中支持我的巨大耐心。
【问题讨论】:
标签: azure active-directory office365