Erlang:使用 Inets 的 HTTP GET 参数

发布于 2024-09-04 21:59:33 字数 503 浏览 7 评论 0原文

这篇文章说明如何使用 Erlang 的 Inets 应用程序

有时,URL 具有 GET 参数:

http://example.net/item?parameter1=12&parameter2=1431&parameter3=8765

除了在 URL 本身中包含参数之外,是否有方法创建变量,然后将它们与请求一起发送?

示例表示赞赏。

This post indicates how to make a simple GET HTTP request with Erlang's Inets application.

Sometimes, URLs have GET parameters:

http://example.net/item?parameter1=12¶meter2=1431¶meter3=8765

Besides including the parameters in the URL itself, is there a way to create variables and then send them with the request?

Example appreciated.

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

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

发布评论

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

评论(1

佞臣 2024-09-11 21:59:33
ssl:start(),
application:start(inets),
httpc:request(post,
   {"https://postman-echo.com/post",
     [],"text/plain","parameter1=12¶meter2=1431¶meter3=8765"},
   [], []).

您可以使用此示例 使用字符串插值为 parameter1..parameter3=8765 创建变量。

ssl:start(),
application:start(inets),
httpc:request(post,
   {"https://postman-echo.com/post",
     [],"text/plain","parameter1=12¶meter2=1431¶meter3=8765"},
   [], []).

You can use this example to use string interpolation to make a variable for parameter1..parameter3=8765.

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