Welcome to the CHICKEN Scheme pasting service
http-client wiki: example doesn't work added by klm` on Fri Mar 27 15:40:32 2015
(use http-client) ;; Finally, an example where we need to send an "attachment" (file) ;; We post a file to the echo-service from the first example. ;; This results in a multi-part POST request, for which we set ;; custom headers on the file (but not the main request) (with-input-from-request "http://localhost/echo-service" '((test . "value") (test-file file: "/tmp/myfile" filename: "hello.txt" headers: ((content-type text/plain)))) read-string)