line/line-bot-sdk-ruby

Name: line-bot-sdk-ruby

Owner: LINE

Description: Line::Bot::API - SDK of the LINE Messaging API for Ruby.

Created: 2016-04-12 12:32:57.0

Updated: 2018-05-21 09:04:16.0

Pushed: 2018-02-23 08:03:17.0

Homepage: https://developers.line.me/

Size: 249

Language: Ruby

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Line::Bot::API

Gem-version Build Status

Line::Bot::API - SDK of the LINE Messaging API for Ruby.

About the LINE Messaging API

See the official API reference documentation for more information.

https://developers.line.me/en/docs/messaging-api/reference/

Synopsis

Usage:

p.rb
ire 'sinatra'
ire 'line/bot'

client
lient ||= Line::Bot::Client.new { |config|
config.channel_secret = ENV["LINE_CHANNEL_SECRET"]
config.channel_token = ENV["LINE_CHANNEL_TOKEN"]



 '/callback' do
dy = request.body.read

gnature = request.env['HTTP_X_LINE_SIGNATURE']
less client.validate_signature(body, signature)
error 400 do 'Bad Request' end
d

ents = client.parse_events_from(body)
ents.each { |event|
case event
when Line::Bot::Event::Message
  case event.type
  when Line::Bot::Event::MessageType::Text
    message = {
      type: 'text',
      text: event.message['text']
    }
    client.reply_message(event['replyToken'], message)
  when Line::Bot::Event::MessageType::Image, Line::Bot::Event::MessageType::Video
    response = client.get_message_content(event.message['id'])
    tf = Tempfile.open("content")
    tf.write(response.body)
  end
end


K"

Installation

Add this line to your application's Gemfile:

'line-bot-api'

And then execute:

$ bundle

Or install it yourself as:

$ gem install line-bot-api
License

Copyright © 2016 LINE Corporation.

Licensed under the Apache License, Version 2.0 (the “License”); you may not use this file except in compliance with the License. You may obtain a copy of the License at

   http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an “AS IS” BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.


This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.