Sha256: da95ea58c258d57a4eb0e8636f085ca9b216cb8a517e84d67d1981c8d5f6e4f9

Contents?: true

Size: 753 Bytes

Versions: 2

Compression:

Stored size: 753 Bytes

Contents

# instapaper_full

Ruby wrapper for the [Instapaper Full API](http://www.instapaper.com/api/full)

Note that you need to [request OAuth Application tokens manually](http://www.instapaper.com/main/request_oauth_consumer_token) 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) do |b|
      if b['type'] == 'bookmark'
        puts b['url']
      end
    end

# Authors

* [Matt Biddulph](http://github.com/mattb)
* [Tom Taylor / Newspaper Club](http://github.com/tomtaylor)

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
instapaper_full-0.3.0 README.md
instapaper_full-0.2.0 README.md