Update README
This commit is contained in:
parent
b480ed767d
commit
f2aac0734e
2 changed files with 4 additions and 12 deletions
14
README.md
14
README.md
|
@ -14,7 +14,7 @@ Add `:line_bot` to your mix deps:
|
||||||
```elixir
|
```elixir
|
||||||
defp deps do
|
defp deps do
|
||||||
[
|
[
|
||||||
{:line_bot, path: "../"}
|
{:line_bot, path: "~> 0.1.0"}
|
||||||
]
|
]
|
||||||
end
|
end
|
||||||
```
|
```
|
||||||
|
@ -48,7 +48,7 @@ config :line_bot,
|
||||||
|
|
||||||
The recommended way to do this is to `use LineBot`, which will create default callbacks handlers, and then override the events you want to handle. The default implementations return without doing anything.
|
The recommended way to do this is to `use LineBot`, which will create default callbacks handlers, and then override the events you want to handle. The default implementations return without doing anything.
|
||||||
|
|
||||||
An example is available in the [sample application](../sample/lib/line_bot_sample.ex).
|
An example is available in the [sample application](https://github.com/adamu/line_bot/tree/master/sample).
|
||||||
|
|
||||||
### 3. Forward webhook requests to `LineBot.Webhook`, and tell it your callback module.
|
### 3. Forward webhook requests to `LineBot.Webhook`, and tell it your callback module.
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ forward "/bot", to: LineBot.Webhook, callback: YourCallbackModule
|
||||||
|
|
||||||
The forwarded URL should be whatever you specified as the callback URI on the Line Developers site.
|
The forwarded URL should be whatever you specified as the callback URI on the Line Developers site.
|
||||||
|
|
||||||
For detailed instructions, see `LineBot.Webhook`. You can also check the [sample application](../sample/lib/line_bot_sample/router.ex).
|
For detailed instructions, see `LineBot.Webhook`. You can also check the [sample application](https://github.com/adamu/line_bot/tree/master/sample).
|
||||||
|
|
||||||
## Not implemented
|
## Not implemented
|
||||||
|
|
||||||
|
@ -94,10 +94,4 @@ LineBot.APIClient.get("richmenu/list")
|
||||||
|
|
||||||
### Flex Message Update
|
### Flex Message Update
|
||||||
|
|
||||||
Recent additions to the Flex message API have not been added yet. This will be the first feature to be implemented after initial release.
|
Recent additions to the Flex message API have not been added yet.
|
||||||
|
|
||||||
## TODO
|
|
||||||
|
|
||||||
* [ ] Tests
|
|
||||||
* [ ] Static resources
|
|
||||||
* [ ] Update post-publish sample links.
|
|
||||||
|
|
|
@ -3,8 +3,6 @@ defmodule LineBotSample do
|
||||||
require Logger
|
require Logger
|
||||||
|
|
||||||
alias LineBot.Message
|
alias LineBot.Message
|
||||||
# TODO update static resource locations
|
|
||||||
|
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
# Helpers
|
# Helpers
|
||||||
# ----------------------------------------------------------------------------
|
# ----------------------------------------------------------------------------
|
||||||
|
|
Loading…
Reference in a new issue