Module: FbGraph::Connections::Videos
- Included in:
- Application, Event, Group, Page, User
- Defined in:
- lib/fb_graph/connections/videos.rb
Instance Method Summary collapse
Instance Method Details
#video!(options = {}) ⇒ Object
13 14 15 16 17 18 |
# File 'lib/fb_graph/connections/videos.rb', line 13 def video!( = {}) video = post .merge(:connection => :videos) Video.new video[:id], .merge(video).merge( :access_token => [:access_token] || self.access_token ) end |
#videos(options = {}) ⇒ Object
4 5 6 7 8 9 10 11 |
# File 'lib/fb_graph/connections/videos.rb', line 4 def videos( = {}) videos = self.connection :videos, videos.map! do |video| Video.new video[:id], video.merge( :access_token => [:access_token] || self.access_token ) end end |