我試圖創建一個使用圖形按http://graph.microsoft.io/en-us/docs/api-reference/beta/api/user_post_plans創建計劃(BETA)似乎不工作
一個策劃方案,但我一直收到以下錯誤請求響應:
"error": {
"code": "BadRequest",
"message": "Write requests are only supported on contained entities",
"innerError": {
"request-id": "eae08944-6f47-477e-9950-ade31c473dd7",
"date": "2016-03-07T11:59:04"
}
按照該文檔我張貼到https://graph.microsoft.com/beta/me/plans與以下機構:
"createdBy": "<my uuid>",
"owner": "<a previously generated group uuid>",
"title": "Blah Plan"
沒有運氣。先前生成的組看起來如下所示:
{
"id": "<uuid>",
"classification": null,
"createdDateTime": "2016-03-07T09:53:26Z",
"description": "Int Test",
"displayName": "Int Test",
"groupTypes": [
"Unified"
],
"mail": "<email_address>",
"mailEnabled": true,
"mailNickname": "IntTest",
"onPremisesLastSyncDateTime": null,
"onPremisesSecurityIdentifier": null,
"onPremisesSyncEnabled": null,
"proxyAddresses": [
"SMTP:<email_address>"
],
"renewedDateTime": "2016-03-07T09:53:26Z",
"securityEnabled": false,
"visibility": "Public"
}
我試過了請求主體的各種組合。有和沒有createdBy值。有和沒有所有者值。似乎沒有任何工作。
任何想法我錯了嗎?該錯誤在我的集成測試以及圖形瀏覽器中都是一致的。
謝謝
不幸的是,這似乎並沒有工作。我作爲我的用戶進行身份驗證。我創建了使用api的組作爲所有者成員(已在組中的ui中確認),然後嘗試使用組ID作爲所有者值和我的用戶ID作爲createdBy值來創建計劃。仍然沒有骰子。 在相關說明。將任務(使用api)添加到先前創建的存儲桶中也會產生相同的錯誤。使用https://tasks.office.com上使用規劃器UI創建的計劃和存儲區的planId和bucketId – Garibaldi
您可以共享POST/beta/plans請求的請求ID和時間戳嗎? –
當然。 「innerError」:{ 「請求ID」: 「eae08944-6f47-477e-9950-ade31c473dd7」, 「日期」: 「2016-03-07T11:59:04」 } – Garibaldi