README.md
      
      
        
        # Slack
Documentation can be found at [https://hexdocs.pm/slack](https://hexdocs.pm/ex_slack).
## Usage
You will need an authorization token. See [The great slack docs](https://api.slack.com/slack-apps)
for help.
In you `config.exs`:
```elixir
config :ex_slack, :token, "xoxb-2REDACTED588-tiUCREDACTEDx7sREDACTED"
```
## HTTP API
See [the HTTP RPC api docs](Slack.RpcApi.html)
## Websocket API
See [the real time messaging api docs](Slack.RtmApi.html)
## Installation
Package can be installed by adding `slack` to your list of dependencies in `mix.exs`:
```elixir
def deps do
  [
    {:ex_slack, "~> 0.1.0"}
  ]
end
```