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.
gem install instapaper_full
ip = InstapaperFull::API.new :consumer_key => "my key", :consumer_secret => "my secret"
ip.authenticate "[email protected]", "password"
puts ip.options[:user_id]
ip.bookmarks_list(:limit => 1).each do |b|
if b['type'] == 'bookmark'
puts b['url']
end
end