pagantis_elixir_tools v0.13.0 ElixirTools.HttpClient
The HttpClient
module handles HTTP(s) interactions with remote services.
Link to this section Summary
Link to this section Types
Link to this section Functions
Link to this function
get(adapter, path, opts \\ [])
get(adapter(), path(), [post_opt()]) :: {:ok, response_body()} | {:error, term()}
Link to this function
post(adapter, path, request_body, opts \\ [])
post(adapter(), path(), request_body(), [post_opt()]) :: {:ok, response_body()} | {:error, term()}
Link to this function
put(adapter, path, request_body, opts \\ [])
put(adapter(), path(), request_body(), [put_opt()]) :: {:ok, response_body()} | {:error, term()}