We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2230b21 commit 922e188Copy full SHA for 922e188
README.md
@@ -23,7 +23,7 @@ gem 'line-bot-api'
23
24
And then execute:
25
26
-```ruby
+```sh
27
bundle
28
```
29
@@ -44,6 +44,7 @@ require 'line/bot'
44
45
def client
46
@client ||= Line::Bot::Client.new { |config|
47
+ config.channel_id = ENV["LINE_CHANNEL_ID"]
48
config.channel_secret = ENV["LINE_CHANNEL_SECRET"]
49
config.channel_token = ENV["LINE_CHANNEL_TOKEN"]
50
}
examples/kitchensink/app.rb
@@ -9,6 +9,7 @@
9
10
11
@client ||= Line::Bot::Client.new do |config|
12
13
14
15
config.http_options = {
0 commit comments