Erlang: HTTP GET Parameters with Inets
Posted
by Ted Karmel
on Stack Overflow
See other posts from Stack Overflow
or by Ted Karmel
Published on 2010-06-08T11:15:30Z
Indexed on
2010/06/08
11:32 UTC
Read the original article
Hit count: 292
The following post indicates how to make a simple get http request with Erlang's inets.
exploring erlang's http client
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.
© Stack Overflow or respective owner