我在尝试使用 OneNote REST API 创建笔记时遇到了一些问题。这发生在我的应用程序中以及当我尝试使用 apigee 工具进行测试时:https ://apigee.com/onenote/embed/console/onenote
经过一些测试,我测试了 OneNote 文档中可用的示例:http: //msdn.microsoft.com/en-us/library/office/dn575438 (v=office.15).aspx#sectionSection3
在 apigee 上,我有以下参数: Method: POST Header: Content-Type: text/html 和相应的授权令牌。请求正文:
<!DOCTYPE html>
<html>
<head>
<title>One Simple Note</title>
<meta name="created" content="2013-06-11T12:45:00.000-8:00"/>
</head>
<body>
<p>This is a simple non-multi-part HTML page.</p>
</body>
</html>
笔记发送成功,收到 201。当我查看我的 OneNote 页面时,笔记已创建,但笔记正文为空。
我究竟做错了什么?