使用 Databinders 调度库在 Scala 中设置 User-Agent 标头

发布于 2024-08-04 08:28:29 字数 16 浏览 7 评论 0原文

有谁知道该怎么做?

Does anyone know how to do this?

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

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

发布评论

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

评论(3

帅冕 2024-08-11 08:28:29

您需要使用 <:< 附加您​​的请求和标头信息。操作员。像这样 :

url("http://example.com") <:< Map("User-Agent" -> "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)") 

You need to append your request with the header info, using the <:< operator. Like this :

url("http://example.com") <:< Map("User-Agent" -> "Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; Win64; x64; Trident/5.0)") 
爱,才寂寞 2024-08-11 08:28:29

仅从阅读源代码来看,您似乎应该在 Http 对象上调用 http.client.params.setParameter("User-Agent","Cowbells") 。你试过这个吗?

Just from reading the source, it looks like you're supposed to call http.client.params.setParameter("User-Agent","Cowbells") on your Http object. Have you tried this?

攀登最高峰 2024-08-11 08:28:29

这个也会起作用:

url("http://example.com").addHeader("User-Agent", "Mozilla...")

This will work as well:

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