适用于所有三种身份验证类型的 httpi-ntlm gem
我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要尝试一个请求,如果失败,或者您收到一个标头,其中包含有关要使用的授权类型的信息,那么您可以改用该身份验证。
几种不同的身份验证类型使用相同的授权标头,因此您不能同时发送不同类型的身份验证。
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.