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: 258

Filed under:
|
|

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.

© Stack Overflow or respective owner

Related posts about http

Related posts about erlang