1
我正在使用Microsoft Graph API來代表用戶獲取工作簿。我希望這種情況適用於個人和組織帳戶。我使用下面的請求,其工作方式爲公司帳戶,但沒有個人賬戶:要求Excel Microsoft Graph API的個人與組織帳戶
GET /v1.0/me/drive/items/{id}/workbook
Authorization: Bearer {token}
響應:
"error": {
"code": "ResourceNotFound",
"message": "Resource not found.",
"innerError": {
"request-id": "1b589c8b-1f65-4cf5-8429-5917cd6695f2",
"date": "2017-02-14T20:13:08"
}
以下要求工作正常的個人和機構帳戶:
GET /v1.0/me/drive/items/{id}
Authorization: Bearer {token}
截至2016年11月,據我所知OneDrive個人帳戶不支持(Graph Excel REST API - Azure AD 2.0 Endpoint - Is OneDrive Personal Supported?)。這是什麼時候啓用?