fail to use store-cookie! pasted by sethalves on Wed Aug 28 00:08:43 2013
(store-cookie!
'((path . (/ ""))
(domain . "some.host.com")
(secure . #t))
`#(("COOKIE_NAME" . "cookie-value")
(path . ,(make-uri path: '(/ "")))))
try #2 pasted by sethalves on Wed Aug 28 00:15:10 2013
(store-cookie! `((path . (/ ""))
(domain . "ssome.host.com")
(secure . #t)
(name . "COOKIE_NAME"))
`#(("COOKIE_NAME" . "cookie-value")
((path . ,(make-uri path: '(/ ""))))))
try #3 pasted by sethalves on Wed Aug 28 00:19:07 2013
(store-cookie! `((path . (/ ""))
(domain . "some.host.com")
(secure . #t)
(name . "COOKIE_NAME"))
`#(("COOKIE_NAME" . "cookie-value")
((path . '(/ "")))))
try #4 pasted by sethalves on Wed Aug 28 00:20:25 2013
(store-cookie! '((path . (/ ""))
(domain . "some.host.com")
(secure . #t)
(name . "COOKIE_NAME"))
'#(("COOKIE_NAME" . "cookie-value")
((path . (/ "")))))
backtrace pasted by sethalves on Wed Aug 28 00:28:31 2013
Error: bad argument type - not a structure of the required type (/ "") URI-common Call history: uri-common.scm:153: uri-generic#uri-port uri-common.scm:154: uri-generic#uri-scheme uri-common.scm:154: alist-ref http-client.scm:121: ##sys#print http-client.scm:121: get-output-string http-client.scm:117: uri-common#uri-port uri-common.scm:153: uri-generic#uri-port uri-common.scm:154: uri-generic#uri-scheme uri-common.scm:154: alist-ref http-client.scm:117: uri-common#uri-port uri-common.scm:153: uri-generic#uri-port uri-common.scm:154: uri-generic#uri-scheme uri-common.scm:154: alist-ref http-client.scm:118: uri-common#uri-host http-client.scm:118: uri-common#uri-host http-client.scm:566: raise <--
success? added by sethalves on Wed Aug 28 00:31:14 2013
(store-cookie! `((path . ,(make-uri path: '(/ "")))
(domain . "some.host.com")
(secure . #t)
(name . "COOKIE_NAME"))
`#(("COOKIE_NAME" . "cookie-value")
((path . ,(make-uri path: '(/ ""))))))