VKontakte adapter for the Lita chat bot.
At first, see the documentation for Lita: http://docs.lita.io/
Add lita-vkontakte to your Lita instance's Gemfile:
gem 'lita-vkontakte', '~> 1.1.0'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_IDYou 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.
app_id(String) - An ID of your applicationapp_secret(String) - A secure key of your applicationaccess_token(String) - An acces token from URL
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