TL; DR
如何在Content-Type
请求(在Insomnia中)中为每个个人文件/输入/文本设置multipart/form-data
标题?
我尝试使用Insomnia Rest Client尝试POST到OneNote API(HTTP description)。根据文档,我需要提交一个multipart/form-data
请求,其中包含一个带标题的文件/文本:
Content-Type: text/html
Content-Disposition: form-data; name=presentation
和另一个标题:
Content-Type: application/inkml+xml
Content-Disposition: form-data; name=presentation-onenote-inkml
以下是我正在尝试的屏幕截图:
如您所见,API返回No Content-Type
错误,导致我认为未设置Content-Type
标头。调试信息如下:
POST数据被隐藏,这使我无法看到Content-Type
。