The HTTP client default profile is started when the
The client supports IPv6 as long as the underlying mechanisms also do so.
The following is to be put in the Erlang node application configuration file to start a profile at application startup:
[{inets, [{services, [{httpc, PropertyList}]}]}]
For valid properties, see
Start
1 > inets:start().
ok
The following calls use the default client profile.
Use the proxy
Example:
2 > httpc:set_options([{proxy, {{"www-proxy.mycompany.com", 8000},
["localhost"]}}]).
ok
The following is an ordinary synchronous request:
3 > {ok, {{Version, 200, ReasonPhrase}, Headers, Body}} =
httpc:request(get, {"http://www.erlang.org", []}, [], []).
With all the default values presented, a get request can also be written as follows:
4 > {ok, {{Version, 200, ReasonPhrase}, Headers, Body}} =
httpc:request("http://www.erlang.org").
The following is an ordinary asynchronous request:
5 > {ok, RequestId} =
httpc:request(get, {"http://www.erlang.org", []}, [], [{sync, false}]).
The result is sent to the calling process as
In this case, the calling process is the shell, so the following result is received:
6 > receive {http, {RequestId, Result}} -> ok after 500 -> error end.
ok
This sends a request with a specified connection header:
7 > {ok, {{NewVersion, 200, NewReasonPhrase}, NewHeaders, NewBody}} =
httpc:request(get, {"http://www.erlang.org", [{"connection", "close"}]},
[], []).
Start an HTTP client profile:
{ok, Pid} = inets:start(httpc, [{profile, foo}]).
{ok, <0.45.0>}
]]>
The new profile has no proxy settings, so the connection is refused:
9 > httpc:request("http://www.erlang.org", foo).
{error, econnrefused}
Stop the HTTP client profile:
10 > inets:stop(httpc, foo).
ok
Alternative way to stop the HTTP client profile:
10 > inets:stop(httpc, Pid).
ok