No commit activity in last 3 years
No release in over 3 years
Readlists API for anonymous lists.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
 Dependencies

Development

>= 0
>= 0
 Project Readme

Readlists::Anonymous

Readlists API for anonymous lists.

Usage

Ruby

require 'readlists/anonymous'

readlists = Readlists::Anonymous.create
readlists.title = title
readlists.description = description

urls.each do |url|
  begin
    readlists << url
  rescue Readlists::Anonymous::RequestError => e
  end
end

puts "* Created anynymous readlists"
puts "share-url: #{readlists.share_url}"
puts "public-edit-url: #{readlists.public_edit_url}"

command-line

$ readlists-anonymous [-t title] [-d description] http://example.com/?url1 http://example.com/?url2 [more url...]

source: ./bin/readlists-anonymous

Installation

Or install it yourself as:

$ gem install readlists-anonymous