http-client & with-input-from-request added by mario-goulart on Sat Feb 11 11:56:25 2012

(module foo ()
(import scheme chicken extras intarweb)

  (use http-client)

  (define imageshack-url "http://www.imageshack.us/index.php")

  (with-input-from-request imageshack-url
                           `((fileupload file: "foo.gif" filename: "foo.gif"
                                         headers: ,(headers
                                                    '((content-type text/plain)))))
                           read-string)
)