Project

lita-line

0.0
No commit activity in last 3 years
No release in over 3 years
A line adapter for lita bot
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

Runtime

 Project Readme

lita-line

Gem Gem Gemnasium Build Status Code Climate Coverage Status

LINE messaging webhook adapter for Lita

Installation

Add lita-line to your Lita instance's Gemfile:

gem "lita-line"

Configuration

Use line adapter in lita_config.rb

config.robot.adapter = :line
config.adapters.line.channel_secret = ENV["LINE_CHANNEL_SECRET"]
config.adapters.line.channel_token = ENV["LINE_CHANNEL_TOKEN"]

Required attributes

  • channel_secret (String): Bot's Channel secret
  • channel_token (String): Bot's Channel token

Create a line bot at https://business.line.me/ and get its secret and token in https://developers.line.me

Usage

  • Deploy your lita app to heroku
  • Setting the webhook callback address: https://{your-lita-app-name}.herokuapp.com/callback in https://developers.line.me

API documentation

The API documentation, useful for plugin authors, can be found for the latest gem release on RubyDoc.info

Example

License

MIT