Skip to content

Instantly share code, notes, and snippets.

@furu
Created June 30, 2017 17:46
Show Gist options
  • Save furu/6260e2c0003f9932fab125bf1b2a10c0 to your computer and use it in GitHub Desktop.
Save furu/6260e2c0003f9932fab125bf1b2a10c0 to your computer and use it in GitHub Desktop.
{-# LANGUAGE OverloadedStrings #-}
import Network.HTTP.Simple
main :: IO ()
main = do
resp <- httpLBS "HEAD https://httpbin.org/get"
putStrLn $ "Status: " ++ show (getResponseStatus resp)
putStrLn $ "Headers: " ++ show (getResponseHeaders resp)
@furu
Copy link
Author

furu commented Jun 30, 2017

httpNoBody というのがあって HEAD メソッドを送るのかと思ったけど、そうではなく、ただリクエストボディを無視して、() を返すだけだった。

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment