我需要通过从本地上传来更新个人资料图片,然后使用MICROSOFT GRAPH API更新它,我尝试了下面的代码
<input type="file" accept=".jpg, .jpeg, .png"(change)="uploadImage($event.target.files)">
uploadImage(files) {
let file = files[0];
if (file) {
this.getBase64(file).then(data => {
const headers = new Headers({
'content-Type': 'image/jpeg',
'Authorization': 'Bearer ' + token
});
const options = new RequestOptions({ headers: headers });
this._http.patch('https://graph.microsoft.com/v1.0/me/photo/$value', data, options)
.subscribe(res => {});
});
}
}
getBase64(file) {
return new Promise((resolve, reject) => {
const reader = new FileReader();
reader.readAsDataURL(file);
reader.onload = () => resolve(reader.result);
reader.onerror = error => reject(error);
});
}
我收到以下错误
{
"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": "2532c086-a844-4d80-87e8-ad96545396c4",
"date": "2018-03-15T11:38:33"
}
}
}
它基于文档https://developer.microsoft.com/en-us/graph/docs/api-reference/v1.0/api/profilephoto_update
如何使用Angular App中的Microsoft Graph API更新配置文件,如何获取图像二进制数据。提前致谢
答案 0 :(得分:1)
您收到有关smtpAddress
被设置为空的错误的原因是该用户没有Exchange Online邮箱。您只能将配置文件照片上传到具有有效Exchange Online邮箱的用户。不支持具有本地邮箱或Outlook.com的用户。
从Exchange Online访问的用户,组或Outlook联系人的个人资料照片。它的二进制数据不是以base-64编码的。
此外,您需要发送原始二进制文件,不图像的base64编码表示。