class Kaltura::KalturaConfiguration
Attributes
format[RW]
http_proxy[RW]
logger[RW]
requestHeaders[RW]
service_url[RW]
timeout[RW]
Public Class Methods
new()
click to toggle source
Adding service_url
to the initialize signature to pass url to your own kaltura ce instance Default is still set to www.kaltura.com.
# File lib/kaltura_client_base.rb, line 495 def initialize() @service_url = "http://www.kaltura.com" @format = 2 # xml @timeout = 120 @requestHeaders = {} end
Public Instance Methods
http_proxy=(proxy_host_port)
click to toggle source
# File lib/kaltura_client_base.rb, line 506 def http_proxy=(proxy_host_port) @http_proxy = proxy_host_port end
service_url=(url)
click to toggle source
# File lib/kaltura_client_base.rb, line 502 def service_url=(url) @service_url = url.chomp('/') end