Project

vkontakte

0.0
No commit activity in last 3 years
No release in over 3 years
The easiest way to access Vkontakte API and some other utils.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

 Project Readme

Vkontakte¶ ↑

The easiest way to access Vkontakte API and some other utils. More info about API:

  1. vk.com/developers.php?oid=-1&p=%D0%90%D0%B2%D1%82%D0%BE%D1%80%D0%B8%D0%B7%D0%B0%D1%86%D0%B8%D1%8F

  2. vk.com/developers.php?oid=-1&p=%D0%92%D1%8B%D0%BF%D0%BE%D0%BB%D0%BD%D0%B5%D0%BD%D0%B8%D0%B5_%D0%B7%D0%B0%D0%BF%D1%80%D0%BE%D1%81%D0%BE%D0%B2_%D0%BA_API

  3. vk.com/developers.php?oid=-1&p=%D0%9F%D1%80%D0%B0%D0%B2%D0%B0_%D0%B4%D0%BE%D1%81%D1%82%D1%83%D0%BF%D0%B0_%D0%BF%D1%80%D0%B8%D0%BB%D0%BE%D0%B6%D0%B5%D0%BD%D0%B8%D0%B9

Install¶ ↑

gem 'vkontakte'

Configure¶ ↑

Vkontakte.setup do |config|
  config.app_id = "YOUR Vkontakte API ID"
  config.app_secret = "YOUR Vkontakte APP SECRET"
  config.format = :json
  config.debug = false
  config.logger = File.open(Rails.root.join('log', 'vkontakte.log'), "a")
end

Usage¶ ↑

User API by access_token¶ ↑

user = Vkontakte::App::User.new(uid, :access_token => ACCESS_TOKEN)
user.fetch # {"response"=>[{"uid"=>2592709, ...

Profile

user.profile.isAppUser      # {"response"=>"1"}
user.profile.getUserBalance
user.profile.getUserSettings
user.profile.likesGetList(:type => 'post')

Photos

user.photos.getAlbums
user.photos.getAlbumsCount
user.photos.get(:aid => 'album_id')

Groups

user.groups.get
user.groups.isMember(:gid => 'group_id')
user.groups.join(:gid => 1)
user.groups.leave(:gid => 1)

Friends

user.friends.get
user.friends.getOnline

Secure API¶ ↑

@app = Vkontakte::App::Secure.new
@app.secure.getAppBalance         # {"response"=>2000}
@app.auth                         # {"expires_in"=>0, "access_token"=>"d173f5...319f"}

IFrame application¶ ↑

Check if auth_key is valid:

def index
  @app = Vkontakte::App::Iframe.new
  @app.params = params

  if @app.valid_auth_key?
    session[:viewer_id] = params[:viewer_id]
  else
    render :action => "failure"
  end
end

Test¶ ↑

rake spec

Copyright © 2011 Aimbulance, released under the MIT license