I'm trying to display facebook album photos on my rails 3.12 app via the Koala gem by first accessing the users albums. I know how get the album:
u.facebook.get_connections('me', 'albums')
but there is no direct access to the individual albums photos. There is a link in the album object to a facebook page that shows all the album photos but that is about it. I need to be able to drill down further via the graph API to get the individual photo objects but I don't know how to do so with Koala. I prefer Koala based solutions but I am open to any solutions at all.
Thanks...