Skip to content

Latest commit

 

History

History
18 lines (11 loc) · 588 Bytes

README.md

File metadata and controls

18 lines (11 loc) · 588 Bytes

instapaper_full

Ruby wrapper for the Instapaper Full API

Draft version.

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
puts ip.bookmarks_list(:limit => 1)[0]['url']