Erlang:使用 Inets 的 HTTP GET 参数
这篇文章说明如何使用 Erlang 的 Inets 应用程序。
有时,URL 具有 GET 参数:
http://example.net/item?parameter1=12¶meter2=1431¶meter3=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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以使用此示例 使用字符串插值为
parameter1..parameter3=8765
创建变量。You can use this example to use string interpolation to make a variable for
parameter1..parameter3=8765
.