vine_client

vine_client - This is the simple Ruby wrapper for the Vine API.

Installation

# Gemfile
gem 'vine_client'

or

$ gem install vine_client

Usage

Authentication

user=Vine::Client.new('username','password')

Method calls

#user info
user.('user_id')#default current user id

#search user by username 
user.search('username',page)

#return the list of popular posts
user.get_popular

#user timeline
user.timelines('user_id')

#tags
user.tag(tag)

#notfifications

user.notifications('user_id')

#logout

user.logout