View Source influitive_ex
A wrapper around the Influitive API
Installation
The package can be installed by adding influitive
to your list of dependencies in mix.exs
:
def deps do
[
{:influitive, "~> 0.1.2"}
]
end
Configuration
Put your API key and Org ID in your config.exs
file:
config :influitive,
api_key: "myApiKey",
org_id: "myOrgId"
You can customize the json library to use another library via the :json_library
configuration:
config :influitive, :json_library, SomeOtherLib