Method: Facebooker::Session#get_tags

Defined in:
lib/facebooker/session.rb

#get_tags(pids) ⇒ Object



326
327
328
329
330
331
332
# File 'lib/facebooker/session.rb', line 326

def get_tags(pids)
  @tags = post('facebook.photos.getTags', :pids => pids)  do |response|
    response.map do |hash|
      Tag.from_hash(hash)
    end
  end
end