0.02
No commit activity in last 3 years
No release in over 3 years
See http://www.instapaper.com/api/full
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

>= 0
~> 2.4.2
~> 1.7.8

Runtime

 Project Readme

instapaper_full

Ruby wrapper for the Instapaper Full API

Note that you need to request OAuth Application tokens manually and that most methods only work for Instapaper subscribers.

Installation

gem install instapaper_full

Examples

ip = InstapaperFull::API.new :consumer_key => "my key", :consumer_secret => "my secret"
ip.authenticate "someone@example.com", "password"
puts ip.options[:user_id]
ip.bookmarks_list(:limit => 1).each do |b|
  if b['type'] == 'bookmark'
    puts b['url']
  end
end

Authors