- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在使用仅限应用程序的权限查询 Microsoft Graph,因为我正在对目录中的所有用户执行操作。当我查询 onPremisesSamAccountName
时使用我的 token ,我没有任何问题。但是,当我尝试检索用户的照片(使用相同的 token )时,我得到以下信息:
StatusCode: 400 Bad Request
Error Code: AuthenticationError
Error Message: Error authenticating with resource
我在租户中分配了以下仅限应用程序的权限:
详细信息:
https://graph.microsoft.com/v1.0/users/<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="204d595553455260444f4d41494e0e434f4d" rel="noreferrer noopener nofollow">[email protected]</a>/photo/$value
https://graph.microsoft.com/.default
application/json
"bearer _my token string_"
这是我的请求(在 ColdFusion 中):
<cfhttp method="get" charset="utf-8" url="https://graph.microsoft.com/v1.0/users/<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="a1ccd8d4d2c4d3e1c5ceccc0c8cf8fc2cecc" rel="noreferrer noopener nofollow">[email protected]</a>/photo/$value" result="resp">
<cfhttpparam type="header" name="Content-Type" value="application/json">
<cfhttpparam type="header" name="Authorization" value="bearer Oxfd989309sdf...">
</cfhttp>
我得到的回复就是我上面显示的内容。当我通过http://jwt.calebb.net/运行我的 token 时,我没有看到任何范围设置。
我尝试通过 Graph Explorer 运行它。我以我自己的身份登录,然后运行 URI https://graph.microsoft.com/v1.0/me/photo
,我收到的回复是:
{
"error": {
"code": "ErrorItemNotFound",
"message": "The photo wasn't found.",
"innerError": {
"request-id": "ebae50f8-b636-4e61-9d92-eab4b48ef0c2",
"date": "2019-08-08T19:13:50"
}
}
}
我希望如此,因为我没有照片。
当我使用 URI https://graph.microsoft.com/v1.0/users/<a href="https://stackoverflow.com/cdn-cgi/l/email-protection" class="__cf_email__" data-cfemail="016c7874726473416c78656e6c60686f2f626e6c" rel="noreferrer noopener nofollow">[email protected]</a>/photo/$value
时,我得到以下响应:
{
"error": {
"code": "ResourceNotFound",
"message": "Resource could not be discovered.",
"innerError": {
"request-id": "40246947-57d6-4016-a55a-c1ad5f0736e4",
"date": "2019-08-08T19:16:37"
}
}
}
我按照 the documentation 设计了我的请求其中显示了示例 GET
GET /users/{id | userPrincipalName}/photo/$value
我是否错过了一个步骤,或者遗漏了一个范围?
最佳答案
When I run my token through http://jwt.calebb.net/, I don't see anyscopes set.
当您使用客户端凭证流程获取 token 时,您将获得角色下的权限。
I tried running this through Graph Explorer. I signed in as myself,then I ran the URI https://graph.microsoft.com/v1.0/me/photo, theresponse I received was:404
就像 @Marc LaFleur 在评论中所说,确保用户配置了 Exchange Online 邮箱,并上传了个人资料图片。
关于azure - 在 Graph 中检索照片时从 Microsoft 获取 "AuthenticationError",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57419444/
我编写了 GqlAuthGuard 模块,但它总是在 JWT 过期或非法时抛出 UnauthorizedException。它将导致堆栈跟踪错误。 我想抛出 AuthenticationError(来
我编写了 GqlAuthGuard 模块,但它总是在 JWT 过期或非法时抛出 UnauthorizedException。它将导致堆栈跟踪错误。 我想抛出 AuthenticationError(来
每当我重设密码或尝试获取电子邮件确认时,我都会看到这种错误页面: Net::SMTPAuthenticationError in Devise::PasswordsController#create
当我使用 PostMan 向 https://fcm.googleapis.com/fcm/send 发送请求时用这个 body { "data": { "notification": {
我正在使用仅限应用程序的权限查询 Microsoft Graph,因为我正在对目录中的所有用户执行操作。当我查询 onPremisesSamAccountName 时使用我的 token ,我没有任何
我正在使用仅限应用程序的权限查询 Microsoft Graph,因为我正在对目录中的所有用户执行操作。当我查询 onPremisesSamAccountName 时使用我的 token ,我没有任何
请帮忙... 我有一个简单的脚本,可以在 Linux (Ubuntu) 上运行,没有任何问题,但在 Windows 上给出 AuthenticationError: 摘要发送被拒绝,我知道它与 mul
我是 Azure 新手。我正在尝试创建简单的 Java 应用程序来连接,然后从 Blob 容器下载数据我从创造开始这是代码片段 String sasToken = "my blob sas token
我在 python 中已经 1 周大了。我从 python 调用 sudssoap api 。这是我的代码。 logging.basicConfig(level=logging.INFO) if __
我在 Ubuntu 14.04 上有一个 RabbitMQ 3.6.1 服务器正常运行。我尝试根据 official documentation 配置 SSL 监听器.启动过程中没有问题。 然而,在尝
我是一名优秀的程序员,十分优秀!