对计划任务的 Microsoft Graph api 的补丁请求没有 return 响应中的更新任务
patch request to microsoft graph api for planner task does not return the updated task in the response
根据 documentation 更新计划器中的订单提示。
The client can obtain the values immediate if return=representation preference is specified in the PATCH requests.
我试过将它放在 header 中并作为查询参数,但我仍然只得到 204 响应。
在 PATCH
请求中,return=representation
去哪儿了?
正如您在 docs 中看到的那样:
Important: APIs under the /beta version in Microsoft Graph are in
preview and are subject to change. Use of these APIs in production
applications is not supported.
API 仍在开发中。所以文档也可能会更新。
您可以将问题提交至 Github issue list first. Meanwhile vote up the existing request or submit a new one in the UserVoice
graph sdk team 启发了我。
header Prefer:return=representation 是需要设置的。
根据 documentation 更新计划器中的订单提示。
The client can obtain the values immediate if return=representation preference is specified in the PATCH requests.
我试过将它放在 header 中并作为查询参数,但我仍然只得到 204 响应。
在 PATCH
请求中,return=representation
去哪儿了?
正如您在 docs 中看到的那样:
Important: APIs under the /beta version in Microsoft Graph are in preview and are subject to change. Use of these APIs in production applications is not supported.
API 仍在开发中。所以文档也可能会更新。
您可以将问题提交至 Github issue list first. Meanwhile vote up the existing request or submit a new one in the UserVoice
graph sdk team 启发了我。 header Prefer:return=representation 是需要设置的。