在通过REST api调用在MS365授权帐户中创建Notebook时。我遇到了一些问题,任何人都可以让我知道我必须为此做出哪些更改。
请求:
POST - https://graph.microsoft.com:443/v1.0/me/notes/notebooks
Body : {
"name": "MSOneNoteBusiness_OSSA_5LyC"
}
响应
Body : {
"error": {
"code": "BadRequest",
"message": "Unsupported segment type. ODataQuery: users/8dc0a74f-0aa6-45f4-813b-92e910f40bd4/notes/notebooks",
"innerError": {
"request-id": "fa409682-5395-4189-a43c-757adcfaea35",
"date": "2017-06-28T10:08:06"
}
}
答案 0 :(得分:0)
请求应为POST https://graph.microsoft.com/v1.0/me/onenote/notebooks
,而不是/me/notes
,请求正文应具有属性displayName
。我们还在Graph Explorer中提供了一个示例: