rampion
rampion

Reputation: 89053

HTTPS in Haskell

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

However, the HTTP package's documentation for Network.HTTP explicitly 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 do support HTTPS?

Upvotes: 4

Views: 290

Answers (1)

Yuras
Yuras

Reputation: 13876

Do you need only client side library?

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

Upvotes: 4

Related Questions