在抢占模式下使用 groovy http-builder
当使用带有基本身份验证的 groovy 的 http-builder 时,默认行为是首先发送未经身份验证的请求,并在首先收到 401 后重新发送带有凭据的请求。 Apache 的 Httpclient 提供抢占式身份验证,直接在第一次发送凭据要求。 如何在 Groovy 的 http-builder 中使用抢占式身份验证?任何代码示例都值得赞赏。
When using groovy's http-builder with basic authentication the default behavior is to send an unauthenticated request first and resend the request with credentials after receiving a 401 in the first place.
Apache's Httpclient offers preemptive authentication to send the credentials directly on the first request.
How can I use preemptive auth in Groovy's http-builder? Any code examples are appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
与 Jenkins 一起使用。
Used following with Jenkins.
您还可以通过常规方式解决它
You can also solve it groovy style with
基于 JIRA问题你可以这样做:
Based on a JIRA issue you can do something like that :