Hoogle Search
Within LTS Haskell 24.52 (ghc-9.10.3)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
postRequestWithBody :: String -> String -> String -> Request_StringHTTP Network.HTTP A convenience constructor for a POST Request. It constructs a request and sets the body as well as the Content-Type and Content-Length headers. The contents of the body are forced to calculate the value for the Content-Length header. If the URL isn't syntactically valid, the function raises an error.
type
HTTPRequest a = Request aHTTP Network.HTTP.Base No documentation available.
data
NormalizeRequestOptions tyHTTP Network.HTTP.Base NormalizeRequestOptions brings together the various defaulting/normalization options over Requests. Use defaultNormalizeRequestOptions for the standard selection of option
-
HTTP Network.HTTP.Base No documentation available.
-
HTTP Network.HTTP.Base An HTTP Request. The Show instance of this type is used for message serialisation, which means no body data is output.
Request :: URI -> RequestMethod -> [Header] -> a -> Request aHTTP Network.HTTP.Base No documentation available.
type
RequestData = (RequestMethod, URI, [Header])HTTP Network.HTTP.Base RequestData contains the head of a HTTP request; method, its URL along with the auxiliary/supporting header data.
-
HTTP Network.HTTP.Base The HTTP request method, to be used in the Request object. We are missing a few of the stranger methods, but these are not really necessary until we add full TLS.
type
RequestNormalizer ty = NormalizeRequestOptions ty -> Request ty -> Request tyHTTP Network.HTTP.Base RequestNormalizer is the shape of a (pure) function that rewrites a request into some normalized form.
type
Request_String = Request StringHTTP Network.HTTP.Base No documentation available.