在 Ruby 中发出超时的 HTTP HEAD 请求
在 Rails 应用程序中,我想对资源(用户提供的 URL)发出 HTTP HEAD 请求,以确保它存在。我还想要一个超时,以确保该方法在花费合理的等待时间后失败。实现此目的最直接的方法是什么(如果可能,使用标准库)?
In a Rails app, I'd like to make a HTTP HEAD request for a resource (a user-provided URL), to make sure that it exists. I'd also like a timeout, to ensure that the method fails after spending a reasonable period of time waiting. What is the most straightforward way to accomplish this (using the standard library, if possible)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个片段:
希望这就是您正在寻找的。
更新
因为有
head
方法看起来像你也可以使用这个片段:
Try this snippet:
Hope this is what you're looking for.
UPDATE
Because there is
head
method that looks likeYou can also use this snippet: