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&parameter2=1431&parameter3=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.