HTTPS in Haskell

I want to interact with some google HTTPS APIs in Haskell (at least ClientLogin first ).

However, the HTTP package documentation for Network.HTTPexplicitly says, "This package only supports HTTP, it does not support HTTPS. Attempts to use HTTPS result in an error."

So what packages are available that support HTTPS?

+4
source share
1 answer

Do you need only a client library?

I used http-conduit and http-streams , so I recommend them. My choice for current projects is http-conduit.

+4
source

All Articles