Module: Fog::Storage::GoogleJSON::GetObjectHttpUrl
Instance Method Summary collapse
Instance Method Details
#get_object_http_url(bucket_name, object_name, expires, options = {}) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/fog/storage/google_json/requests/get_object_http_url.rb', line 5 def get_object_http_url(bucket_name, object_name, expires, = {}) raise ArgumentError.new("bucket_name is required") unless bucket_name raise ArgumentError.new("object_name is required") unless object_name http_url(.merge(:headers => {}, :host => @host, :method => "GET", :path => "#{bucket_name}/#{object_name}"), expires) end |