= Flickraw Flickraw is a library to access flickr[http://flickr.com] api in a simple way. It maps exactly the methods described in {the official api documentation}[http://www.flickr.com/services/api]. It also try to present the data returned in a simple and intuitive way. The methods are fetched from flickr when loading the library by using introspection capabilities. So it is always up-to-date with regards to new methods added by flickr. You can read the class documentation here : FlickRaw. The rubyforge project : http://rubyforge.org/projects/flickraw = Installation Type this in a console (you might need to be superuser) gem install flickraw You can recreate this documentation by typing this in the source directory: rake rdoc = Usage require 'flickraw' list = flickr.photos.getRecent id = list[0].id secret = list[0].secret info = flickr.photos.getInfo :photo_id => id, :secret => secret info.title # => "PICT986" info.dates.taken # => "2006-07-06 15:16:18" sizes = flickr.photos.getSizes :photo_id => id original = sizes.find {|s| s.label == 'Original' } original.width # => "800" See the _examples_ directory to find more examples. = Notes If you want to use the api authenticated with several user at the same time, you must pass the authentication token explicitely each time. This is because it is keeping the authentication token internally. As an alternative, you can create new Flickr objects besides Object.flickr which is created for you. Use Flickr.new to this effect.
Project
wideopenspaces-flickraw
Flickr library with a syntax close to the syntax described on http://www.flickr.com/services/api
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
Development
Dependencies
Runtime
>= 0
Project Readme