使用pythons webdav.client连接到Nextcloud。
import webdav.client as wc
def webdav_con(webdav_hostname, webdav_usr, webdav_password):
options = {
'webdav_hostname': webdav_hostname,
'webdav_login': webdav_usr,
'webdav_password': webdav_password,
'webdav_root': "/remote.php/webdav"
}
return client = wc.Client(options)
cloud_client = webdav_con(hostname_webdav_nextcloud, usr_nextcloud, pw_nextcloud)
然后我在路径中列出文件,然后进行处理。
files_in_cloud = cloud_client.list("path_in_cloud")
到目前为止,一切都很好-在本地机器上执行脚本没有问题。当我尝试在gitlab服务器上运行脚本时,就会出现问题。
webdav.exceptions.RemoteResourceNotFound: Remote resource: path_in_cloud not found
即使我只想在根目录中列出文件,也会出现错误。似乎我的身份验证存在问题,这很奇怪,因为我使用与本地计算机相同的凭据/相同的url和root。
webdav.exceptions.ResponseErrorCode: Request to my_cloud_url failed with code 401 and message: b'<?xml version="1.0" encoding="utf-8"?>\n<d:error xmlns:d="DAV:" xmlns:s="http://sabredav.org/ns">\n <s:exception>Sabre\\DAV\\Exception\\NotAuthenticated</s:exception>\n <s:message>No \'Authorization: Basic\' header found. Either the client didn\'t send one, or the server is misconfigured, No \'Authorization: Bearer\' header found. Either the client didn\'t send one, or the server is mis-configured</s:message>\n</d:error>\n'
非常感谢您的帮助!
答案 0 :(得分:0)
我设法自己解决了这个问题。 似乎webdavclient如何处理后台请求存在问题。
使用新的webdav3客户端(它使用直接的http请求而不是curl)对我有用:
from webdav3.client import Client
def webdav_con(webdav_hostname, webdav_usr, webdav_password):
options = {
'webdav_hostname': webdav_hostname,
'webdav_login': webdav_usr,
'webdav_password': webdav_password,
'webdav_root': r"/remote.php/webdav"
}
client = Client(options)
return client
cloud_client = webdav_con(hostname_webdav_nextcloud, usr_nextcloud, pw_nextcloud)
答案 1 :(得分:-1)
'webdav_root' 中存在拼写错误:r"/remote.php/webdav",删除 'r' 以使其正常工作。