如何用 Ruby 发送 WebDAV Headers?
How to send WebDAV Headers with Ruby?
我正在尝试使用 ruby 2.0 与 Owncloud 服务器 (Sabre/webDAV) 通信。我有一个 Curl 示例,用于获取需要在 HTTP headers 中传递信息的文件列表。如何从 Ruby 传递此 header 信息? net_dav docs 似乎表明这是一种可用的方法,但 ruby 错误似乎表明并非如此:
编辑:修复语法错误headers =
到headers()
undefined method headers= for #<Net::DAV:0x00000001276d10> (NoMethodError)
卷曲命令:
# curl -s -X PROPFIND -H "Depth: 100" -H "Content-Type: application/json" -u ${username}:${passwd} https://myserver.net/remote.php/webdav | egrep href
ruby代码:
# get list of files
url = "https://myserver.net"
path = "/remote.php/webdav/"
dav = Net::DAV.new(url, :curl => false)
dav.verify_server = true
dav.credentials(user, pass)
dav.headers ("Depth: 100") # << something wrong ?
# get list of files
path = "/remote.php/webdav/"
options = ''
props = dav.propfind(path, options)
您链接的文档说使用 dav.headers()
,您正在使用 dav.headers =
。也许这就是问题所在?
最后,我发现 rubygems.org 上的 v0.5 Gem 远远落后于 net_dav github 页面上的 v0.5 代码。 This comment 展示了如何获得有效的更新 Gem。
我正在尝试使用 ruby 2.0 与 Owncloud 服务器 (Sabre/webDAV) 通信。我有一个 Curl 示例,用于获取需要在 HTTP headers 中传递信息的文件列表。如何从 Ruby 传递此 header 信息? net_dav docs 似乎表明这是一种可用的方法,但 ruby 错误似乎表明并非如此:
编辑:修复语法错误headers =
到headers()
undefined method headers= for #<Net::DAV:0x00000001276d10> (NoMethodError)
卷曲命令:
# curl -s -X PROPFIND -H "Depth: 100" -H "Content-Type: application/json" -u ${username}:${passwd} https://myserver.net/remote.php/webdav | egrep href
ruby代码:
# get list of files
url = "https://myserver.net"
path = "/remote.php/webdav/"
dav = Net::DAV.new(url, :curl => false)
dav.verify_server = true
dav.credentials(user, pass)
dav.headers ("Depth: 100") # << something wrong ?
# get list of files
path = "/remote.php/webdav/"
options = ''
props = dav.propfind(path, options)
您链接的文档说使用 dav.headers()
,您正在使用 dav.headers =
。也许这就是问题所在?
最后,我发现 rubygems.org 上的 v0.5 Gem 远远落后于 net_dav github 页面上的 v0.5 代码。 This comment 展示了如何获得有效的更新 Gem。