Skip to content

Instantly share code, notes, and snippets.

@serian
Created April 29, 2010 11:51
Show Gist options
  • Save serian/383486 to your computer and use it in GitHub Desktop.
Save serian/383486 to your computer and use it in GitHub Desktop.
gauche http レスポンスヘッダ
;Gacuhe
;httpのレスポンスヘッダから任意のヘッダを文字列としてぬきだす
;ここでは一つだけあるset-cookieヘッダ。
(use rfc.http)
(use text.tree)
(receive (status header body)
(http-get svr req-uri)
(tree->string (car (string-split (tree->string (cdr (assoc "set-cookie" header))) ";"))))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment