Module: BonjourVimeo::OembedApi

Includes:
HTTParty
Defined in:
lib/bonjour_vimeo/oembed_api.rb

Class Method Summary collapse

Class Method Details

.embed(video_id, autoplay = false, byline = false, title = false, color = "fa6132", portrait = false, loop = false) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
# File 'lib/bonjour_vimeo/oembed_api.rb', line 9

def self.embed(video_id,autoplay=false,=false,title=false,color="fa6132",portrait=false,loop=false)
  response = get ("http://vimeo.com/api/oembed.json?url=http%3A//vimeo.com/#{video_id}Video&width=640&autoplay=#{autoplay}&byline=#{}&title=#{title}&portrait=#{portrait}&color=#{color}&loop=#{loop}&api=1")
  case response.code
  when 200
    response['status']=true
    response
  when 404
      response = {'status'=> false}
  when 500...600
    response = {'status'=> response.code}
  end
end