0.0
No commit activity in last 3 years
No release in over 3 years
Twitter-knife is a really simple twitter v1.1 API client. It only provides get and post methods, user type the API they want in the params.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

~> 0.4.7
 Project Readme

Simple Twitter Client

install

gem install 'twitter-knife'

use

require 'twitter-knife'

client = TwitterKnife::Client.new({
  :consumer_key => CONSUMER_KEY,
  :consumer_secret => CONSUMER_SECRET,
  :oauth_token => OAUTH_TOKEN,
  :oauth_token_secret => OAUTH_SECRET
})

client.get('users/show', {:screen_name => 'eguitarz'})