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

Development

~> 1.7
~> 10.0
~> 3.3
~> 3.3
~> 0.31
~> 0.10
~> 0.8

Runtime

~> 4.4
 Project Readme

Lita::Adapters::Vkontakte

Gem Version Build Status Coverage Status

VKontakte adapter for the Lita chat bot.

Usage

At first, see the documentation for Lita: http://docs.lita.io/

Installation

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

gem 'lita-vkontakte', '~> 1.1.0'

Preparation

Go to https://vk.com/editapp?act=create and create standalone application. Then go to application settings page and look at application ID and secure key.

Open terminal and type the following command (replace $LITA_VK_APP_ID with your application ID):

$ lita-vkontakte $LITA_VK_APP_ID

You will see a link. Open it in browser where you are authorized in VKontakte as your future chat bot's user. You will be redirected to some address. We need a parameter access_token from this URL.

Configuration

Required attributes

  • app_id (String) - An ID of your application
  • app_secret (String) - A secure key of your application
  • access_token (String) - An acces token from URL

Example

This is an example lita_config.rb file:

Lita.configure do |config|
  config.robot.name = 'Lita'
  config.robot.mention_name = 'lita'

  config.robot.adapter = :vkontakte

  config.adapters.vkontakte.app_id     = '2849670'
  config.adapters.vkontakte.app_secret = 'EtgJI2yFJ0GYzgDLSS8e'
  config.adapters.vkontakte.access_token  = '51jeIbjmmxJvKo7TTaW0Ext4cx6ajonDIbEkSjFofh7boyxH27JcjKXMODwZTaOxLA1bQbRyY0CEUM2TrXGK6'
end