如何使用easywebdav连接到拥有python的owncloud?

时间:2014-03-21 09:49:20

标签: python webdav owncloud

我尝试使用python连接到owncloud实例。 我发现easywebdav可以让您轻松通过webdav进行连接,但在尝试连接时,我得到的是#404; 404 Not Found"

import easywebdav
webdav = easywebdav.connect('test.org/owncloud/remote.php/webdav/', username='user', password='pass', protocol='https', port=443, verify_ssl=False)
print webdav.ls(".")

我希望在我自己的云实例上找到一个文件列表,但我得到

python ./test.py 
Traceback (most recent call last):
File "./test.py", line 8, in <module>
    print webdav.ls(".")
File "/usr/lib/python2.7/site-packages/easywebdav-1.0.7-py2.7.egg/easywebdav/client.py", line 131, in ls
    response = self._send('PROPFIND', remote_path, (207, 301), headers=headers)
File "/usr/lib/python2.7/site-packages/easywebdav-1.0.7-py2.7.egg/easywebdav/client.py", line 81, in _send
    raise OperationFailed(method, path, expected_code, response.status_code)
easywebdav.client.OperationFailed: Failed to list directory ".".
Operation     :  PROPFIND .
Expected code :  207 UNKNOWN, 301 Moved Permanently
Actual code   :  404 Not Found

我觉得奇怪的是,如果我使用

连接到无效路径
webdav = easywebdav.connect('test.org/owncloud-not-existent/', ......)

我得到了

Traceback (most recent call last):
File "./test.py", line 8, in <module>
    print webdav.ls(".")
File "/usr/lib/python2.7/site-packages/easywebdav-1.0.7-py2.7.egg/easywebdav/client.py", line 131, in ls
    response = self._send('PROPFIND', remote_path, (207, 301), headers=headers)
File "/usr/lib/python2.7/site-packages/easywebdav-1.0.7-py2.7.egg/easywebdav/client.py", line 81, in _send
    raise OperationFailed(method, path, expected_code, response.status_code)
easywebdav.client.OperationFailed: Failed to list directory ".".
Operation     :  PROPFIND .
Expected code :  207 UNKNOWN, 301 Moved Permanently
Actual code   :  405 Method Not Allowed

3 个答案:

答案 0 :(得分:3)

我已经使用个人WebDav服务器进行了测试,我发现了类似的问题,虽然我认为我的easywebdav版本不同,但我使用的是v1.0.7并且不允许使用参数verify_ssl,所以我用&#34; http&#34;进行了测试。

无论如何,我必须重现您的问题,修复它更改连接URL并仅使用主机,将路径放在ls()命令中:

import easywebdav
webdav = easywebdav.connect('test.org', username='user', password='pass', protocol='https', port=443, verify_ssl=False)
print webdav.ls("/owncloud/remote.php/webdav")

答案 1 :(得分:1)

虽然上一个答案中的解决方案确实解决了这个问题,但是在每个命令上传递路径都不太方便。

深入挖掘,似乎owncloud根本不支持使用&#39;&#39;最后。 easywebdav实际上有一个默认路径&#39;。&#39;对于像ls()这样的命令,这样做webdav.ls()应该打印当前目录,但是如上所示,你会得到一个错误。

简单地用完整路径调用ls工作正常,这就是上面建议的答案有效的原因。

原始问题的一个更简单的解决方案是:

import easywebdav
webdav = easywebdav.connect('test.org/owncloud/remote.php/webdav/', username='user', password='pass', protocol='https', port=443, verify_ssl=False)
print webdav.ls("/")

答案 2 :(得分:-1)

connection = easywebdav.connect( 'something.tld',
                    username   = 'your_username',
                    password   = 'your_password',
                    protocol   = 'https',
                    path       = 'owncloud/remote.php/webdav',
                    verify_ssl = False) #not commended
connection.cd("my_folder")
connection.ls("") # Seafile's seafdav will return a 404 if you use the "." or ".." directory