处理 HTTP 请求和响应

发布于 2024-09-03 02:58:56 字数 159 浏览 3 评论 0原文

在 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 技术交流群。

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

发布评论

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

评论(2

时光病人 2024-09-10 02:58:56

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.

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