我想在Microsoft Graph中使用OData $expand
来获取头像。
当我跑步时
GET https://graph.microsoft.com/v1.0/me?$expand=photo
在Graph Explorer中,我收到了此错误:
{
"error": {
"code": "RequestBroker-ParseUri",
"message": "Could not find a property named 'businessPhones' on type 'Microsoft.OutlookServices.User'.",
"innerError": {
"request-id": "cf7937be-169f-41a1-80fb-cf184f0b5a72",
"date": "2017-07-26T22:48:30"
}
}
}
我正确使用它吗?感谢
答案 0 :(得分:0)
不 - 这是不可能的。如果您尝试同时获取照片和照片,请尝试使用$batch
操作。见https://developer.microsoft.com/en-us/graph/docs/concepts/json_batching
希望这有帮助,