Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/eiel/oauth2_chatwork_ex
- Owner: eiel
- License: mit
- Created: 2018-01-25T14:24:40.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2023-12-15T20:15:34.000Z (about 1 year ago)
- Last Synced: 2023-12-15T22:13:39.273Z (about 1 year ago)
- Language: Elixir
- Homepage: https://hex.pm/packages/oauth2_chatwork/
- Size: 6.84 KB
- Stars: 0
- Watchers: 4
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
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.exsdef 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]]
enddefp deps do
# Add the dependency
[{:oauth2_chatwork, "~> 0.1"}]
end
```