View Source DataForSeo.Client (DataForSeo v0.6.0)
Provides basic and common functionalities for DataForSeo API based on Finch.
Link to this section Summary
Functions
Generates basic Auth header from the given username and password
Link to this section Functions
Generates basic Auth header from the given username and password
example
Example
iex> DataForSeo.Client.basic_auth_header("user", "hello") {"Authorization", "Basic dXNlcjpoZWxsbw=="}
Link to this function
delete_request(url, query_params \\ [], headers \\ [], opts \\ [])
View Source
Link to this function
get_request(url, query_params \\ [], headers \\ [], body \\ nil, opts \\ [])
View Source
Link to this function
patch_request(url, query_params \\ [], body \\ %{}, headers \\ [], opts \\ [])
View Source
Link to this function
post_request(url, query_params \\ [], body \\ %{}, headers \\ [], opts \\ [])
View Source
Link to this function