HTTParty 摘要验证
任何人都可以提供使用 HTTParty 使用摘要身份验证的示例吗?我在网上找不到例子,希望有人能提供一些帮助。谢谢。
Can anyone provide an example of using HTTParty using digest auth? I can't find examples on the net and was hoping someone could provide some help. Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以在定义类时使用
digest_auth
方法设置用户名和密码you can set the username and password using the
digest_auth
method when defining your class罗布的答案对我有用,但还有另一种方法不会影响整个班级。因此,您可以更改每次调用的值。
以下内容是根据 HTTParty 文档 稍作修改的:
看到
digest_auth
部分了吗?我对原始示例的 basic_auth 进行了更改。Rob's answer worked for me, but there's another way that doesn't affect the entire class. You could thus change the values for each call.
The following is slightly modified from the HTTParty doc:
See the
digest_auth
part? I changed that from the original example'sbasic_auth
.