Erlang:带有 Inets 的 HTTP 接受标头
我正在尝试执行相当于以下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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
http:request(get, {"http://127.0.0.1:8033/stats", [ {“接受”,“文本/纯文本”}]},[],[])。
http:request(get, {"http://127.0.0.1:8033/stats", [{"Accept", "text/plain"}]}, [], []).