Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/eiel/oauth2_chatwork_ex

A ChatWork OAuth2 Provider for Elixir
https://github.com/eiel/oauth2_chatwork_ex

Last synced: about 1 month ago
JSON representation

A ChatWork OAuth2 Provider for Elixir

Awesome Lists containing this project

README

        

# OAuth2 ChatWork

> A ChatWork OAuth2 Provider for Elixir

[![Build Status](https://travis-ci.org/eiel/oauth2_chatwork.svg?branch=master)](https://travis-ci.org/eiel/oauth2_chatwork)

OAuth2 ChatWork is convenience library built on top of [`oauth2`](https://hex.pm/packages/oauth2). It adds ChatWork specific functions to interact with ChatWork endpoints using OAuth2.

## Installation

```elixir
# mix.exs

def application do
# Add the application to your list of applications.
# This will ensure that it will be included in a release.
[applications: [:logger, :oauth2_chatwork]]
end

defp deps do
# Add the dependency
[{:oauth2_chatwork, "~> 0.1"}]
end
```