Postman 将小文本文件上载到OneDrive API/MS图形

Postman 将小文本文件上载到OneDrive API/MS图形,postman,microsoft-graph-api,onedrive,Postman,Microsoft Graph Api,Onedrive,将小文本文件上载到OneDrive时,正确的内容架构/格式或协议是什么?我正在正确地进行身份验证,等等,但是这些文件似乎不起作用 __ 我正在用邮递员跟踪,确切地说是为了检查我的精神是否正常 具体来说,本例来自文档: PUT /me/drive/root:/FolderA/FileB.txt:/content Content-Type: text/plain The contents of the file goes here. 但出现错误:提供的oneDrive.item中的名称与URL中的

将小文本文件上载到OneDrive时,正确的内容架构/格式或协议是什么?我正在正确地进行身份验证,等等,但是这些文件似乎不起作用

__

我正在用邮递员跟踪,确切地说是为了检查我的精神是否正常

具体来说,本例来自文档:

PUT /me/drive/root:/FolderA/FileB.txt:/content Content-Type: text/plain The contents of the file goes here.
但出现错误:提供的oneDrive.item中的名称与URL中的名称不匹配。

结果:需要位于文件路径的末尾


以前,我曾尝试使用
/me/drive/root:/FolderA:/FileB.txt:/content
而不是
/me/drive/root:/FolderA/FileB.txt:/content

结果:需要位于文件路径的末尾

{ "name": "tester.txt", "file": { } } 以前,我曾尝试使用
/me/drive/root:/FolderA:/FileB.txt:/content
而不是
/me/drive/root:/FolderA/FileB.txt:/content

{ "name": "tester.txt", "file": { } }