Erlang:带有 Inets 的 HTTP 接受标头

发布于 2024-09-04 08:16:03 字数 259 浏览 5 评论 0原文

我正在尝试执行相当于以下curl命令的操作:

curl -H "Accept: text/plain" http:/ /127.0.0.1:8033/stats

我尝试使用 Inets 简单的 http 请求。但是,它没有被处理。

我如何在 Inets(或其他一些 Erlang http 客户端)中指定接受标头要求?

I am trying to do the equivalent of the following curl command :

curl -H "Accept: text/plain" http://127.0.0.1:8033/stats

I tried with an Inets simple http request. But, it isn't processed.

How can I specify in Inets (or some other Erlang http client for that matter) the accept header requirement?

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

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

发布评论

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

评论(1

绅刃 2024-09-11 08:16:03

http:request(get, {"http://127.0.0.1:8033/stats", [ {“接受”,“文本/纯文本”}]},[],[])。

http:request(get, {"http://127.0.0.1:8033/stats", [{"Accept", "text/plain"}]}, [], []).

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