get-object ( bucket key -- response data )
Amazon S3

Prev:keys ( bucket -- seq )
Next:put-object ( data mime-type bucket key headers -- )


Vocabulary
s3

Inputs
bucketa string
keya string


Outputs
responseThe HTTP response object
dataThe data returned from the http request


Word description
Does an HTTP request to retrieve the object in the bucket with the given key.

Examples
USING: s3 ; "testbucket" "mykey" http-get


Definition


: get-object ( bucket key -- response data )
"/" prepend H{ } clone s3-get ;