Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on May 9th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 18  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. require 'faceoff'
  2.  
  3. f = Faceoff.login "email@example.com", "password"
  4.  
  5. f.photos_of_me{|p| p.save!}
  6. # Saves to ./Photos\ of\ me/
  7.  
  8. f.albums[0].name
  9. #=> "Album title"
  10.  
  11. f.albums[0].photos(0..10)
  12. #=> [<#Photo...>,<#Photo...>, ...]
  13.  
  14. f.albums[0].photos[0].url
  15. #=> "http://photo/url.jpg"
  16.  
  17. f.notes.first.title
  18. #=> "Title of note"