haskellhaskell-platform

Haskell library for HTTP communication


What is the recommended library for web client programming which involves HTTP requests.

I know there is a package called HTTP but it doesn't seem to support HTTPS. Is there any better library for it ?

I expect a library with functionality something like this for Haskell.


Solution

  • A library named wreq has been released by Bryan O'Sullivan which is great and easy to use for HTTP communication.

    A related tutorial for that by the same author is here.

    There is also another library named req which provides a nice API.