Project

grapi

0.01
Repository is archived
No commit activity in last 3 years
No release in over 3 years
Ruby client for unofficial Google Reader API
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Runtime

>= 0.6.1.0
 Project Readme

Grapi : Ruby client to access the unofficial Google Reader API

Install

gem install grapi

Client Dependencies

  • Curb (gem install curb)

Synopsis

require "rubygems"
require "grapi"

reader = Grapi::Reader.new
reader.login USERNAME, PASSWORD

puts reader.reading_list

API methods

Public API:

  • initialize(verbose= false)
  • login(USERNAME, PASSWORD)
  • reading_list(:continuation => nil, :dump_data => false, :output => “atom/json”, :items => 1000, :lable => nil)
  • subscribe(feed_url, label = test)
  • unsubscribe(feed_url)
  • mark_as_read( entry_google_ids ) # can pass an entry id or an array of entries id

Protected API:

  • get(url)
  • post(url, params={})
  • post_with_token(url, params={})

License: see MIT-LICENSE

For: contact – ideas – patches please use github infrastructure

Links