我正在尝试上传文件:
curl -X PUT -u "my_username:pass123" "https://nextcloud.my_domain.com/remote.php/webdav/Shared/dir1/" --data-binary @"/Users/user1/test1.png"
错误:
<?xml version="1.0" encoding="utf-8"?>
<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">
<s:exception>Sabre\DAV\Exception\Conflict</s:exception>
<s:message>PUT is not allowed on non-files.</s:message>
</d:error>
为什么?
我使用的凭据是我在浏览器中登录的凭据。
答案 0 :(得分:0)
PUT
请求需要引用您要创建的实际文件,现在您指向的是目录。
所以代替:
https://nextcloud.my_domain.com/remote.php/webdav/Shared/dir1/
使用:
https://nextcloud.my_domain.com/remote.php/webdav/Shared/dir1/test1.png