处理 HTTP 请求和响应
在 erlang 应用程序中处理 http 请求和响应的最佳 erlang 库是什么?我查看了 inets,但作为一个独立的应用程序,它似乎更像是 curl 的替代品。
我想从 erlang 应用程序内部访问外部 API,因此需要解析响应并能够使用响应生成的 cookie 发出后续请求。
What is the best erlang library for processing http requests and responses from within an erlang application? I have taken a look at inets but as a standalone application, it seems more like a replacement for curl.
I would like to access external APIs from within the erlang application so would need to parse responses and be able to make subsequent requests with cookies generated from the response.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
有 mochiweb 和 misultin。 关于 mochiweb 的一个不错的教程。还有其他应用程序。
There are mochiweb and misultin. A nice tutorial on mochiweb. There are also other applications.
inets(或curl)有什么问题?另一种 http 客户端是 ibrowse,您可以在 github 上找到它。
如果您需要解析 html,可以使用 http 服务器工具包 mochiweb 中的 html 解析器。 Mochiweb 还附带一个 json 解析器。
What's the problem with inets (or curl for that matter)? The alternative http client is ibrowse which you can find on github.
If you need to parse the html, there's an html parser that comes as part of the http server toolkit, mochiweb. Mochiweb also comes with a json parser.