使用Microsoft.Graph .net SDK在Microsoft图形中更新或设置用户个人资料图片时遇到问题。
情境:
存在用户(用户角色)的本机应用程序,包括允许用户更新其个人资料的用户个人资料页面。
Azure AD v2.0端点使用&相应的应用注册。应用程序被许多租户使用,因此我们在应用程序注册流程中包含管理员同意流程。
同意的范围是User.ReadWrite
,Directory.AccessAsUser.All
,Directory.ReadWrite.All
和User.ReadWrite.All
。
使用图书馆上传用户个人资料图片时,我们希望每个the documentation Content-Type
为image/jpeg
。然而,Fiddler将content-type
显示为application/octet-stream
PUT /v1.0/me/photo/$value HTTP/1.1
SdkVersion: Graph-dotnet-1.7.0
Cache-Control: no-store, no-cache
Authorization: bearer //removed//
Content-Length: 1051534
Content-Type: application/octet-stream
Host: graph.microsoft.com
Connection: Keep-Alive
结果很奇怪,因为我认为它错过了由图解释
{
"error": {
"code": "ErrorInternalServerError",
"message":
"An internal server error occurred. The operation failed., The value is set to empty\r\nParameter name: smtpAddress",
"innerError": {
"request-id": "5b549f03-1ce5-4c8c-a393-27aef3ed1a75",
"date": "2018-02-07T12:32:26"
}
}
}
我正在使用的代码如下:
if (_selectedPhoto != null)
{
using(IRandomAccessStream raStream = await _selectedPhoto.OpenReadAsync())
{
await graphClient
.Me
.Photo
.Content
.Request()
.PutAsync(raStream.AsStream());
}
}
我补充说我克隆了SDK repository并运行单元测试UserUpdatePhoto
,结果相同。
相应的方法如下。将内容类型更改为image/jpeg
会产生503 unknown error
。不知道根本原因在这里。
public System.Threading.Tasks.Task<Stream> PutAsync(Stream content, CancellationToken cancellationToken, HttpCompletionOption completionOption = HttpCompletionOption.ResponseContentRead)
{
this.ContentType = "application/octet-stream";
this.Method = "PUT";
return this.SendStreamRequestAsync(content, cancellationToken, completionOption);
}
答案 0 :(得分:0)
根据评论,我检查了受影响用户的邮箱,并且邮箱配置存在问题。因此,缺少SMTP地址的指示是正确的,问题仅在于缺少邮箱。