https://github.com/yuki-toida/line
https://github.com/yuki-toida/line
elixir
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/yuki-toida/line
- Owner: yuki-toida
- License: mit
- Created: 2018-04-19T06:27:52.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-07-02T02:38:57.000Z (almost 8 years ago)
- Last Synced: 2025-11-22T19:25:13.610Z (7 months ago)
- Topics: elixir
- Language: Elixir
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# LINE
simple HTTP client for [LINE Login](https://developers.line.me/ja/docs/line-login/overview/).
## Installation
```elixir
def deps do
[
{:line, "~> 0.1.0"}
]
end
```
## Configuration
```elixir
use Mix.Config
config :line,
channel_id: 999999999,
channel_secret: "YOUR CHANNEL SECRET"
redirect_uri: "YOUR REDIRECT URI"
```
channel_secret: you can use environment variables.
```bash
export CHANNEL_SECRET="YOUR CHANNEL SECRET"
```
## License
MIT