如何使用 Rebol 发送 http head 请求?
我想使用 Rebol 获取远程文件的文件大小,其方式与它的方式类似 用 php 完成, 通过发送 HTTP HEAD 请求。 我找不到任何如何在 Rebol 中执行此操作的示例,但使用 Prot-http 模块可能是正确的起点?
我试过
read/custom URL [ HEAD "" ]
它返回“”而不是标题。
I Would like the get the filesize of a remote file using Rebol, in a similar way to how it is done with php,
by send an HTTP HEAD request.
I can't find any example of how to do this in Rebol, but using the Prot-http module may be the right place to start?
i tried
read/custom URL [ HEAD "" ]
it returns "" and not header.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是针对 R2 的,但您可以检查源代码,
http://rebol.wik.is/Protocols/ http
This is for R2 but you can examine the source code,
http://rebol.wik.is/Protocols/Http
另一种解决方案是
An other solution is