适用于所有三种身份验证类型的 httpi-ntlm gem

发布于 2025-01-05 15:38:58 字数 315 浏览 0 评论 0原文

我使用 httpi-ntlm ruby​​ gem 从给定的 url、用户名和密码获取 RSS 提要。

我想知道是否有一种方法可以在我的方法中使用所有三种身份验证类型,以便服务器选择它喜欢的设置???

def get_data url,user,password
    request = HTTPI::Request.new(url)
    request.auth.ntlm(user,password)
    response = HTTPI.get request
    return  response.raw_body 
end

I was using httpi-ntlm ruby gem to get the RSS feeds from the given url, username and password.

I want to know if there is a way I can use all three auth types in my method so that the server picks the setting it prefers???

def get_data url,user,password
    request = HTTPI::Request.new(url)
    request.auth.ntlm(user,password)
    response = HTTPI.get request
    return  response.raw_body 
end

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

青春有你 2025-01-12 15:38:58

您需要尝试一个请求,如果失败,或者您收到一个标头,其中包含有关要使用的授权类型的信息,那么您可以改用该身份验证。

几种不同的身份验证类型使用相同的授权标头,因此您不能同时发送不同类型的身份验证。

You would need to try with one request, if that fails, or you get a header back with the information on what type of authorisation to use, then you can use that auth instead.

Several different auth types use the same Authorization header, hence why you can't send different types of auth at the same time.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文