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!(options = {})
  video = post options.merge(:connection => :videos)
  Video.new video[:id], options.merge(video).merge(
    :access_token => options[: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(options = {})
  videos = self.connection :videos, options
  videos.map! do |video|
    Video.new video[:id], video.merge(
      :access_token => options[:access_token] || self.access_token
    )
  end
end