标签: haskell
如何在Haskell中执行HTTPS请求?
例如,我想通过Dropbox API
request token
P.S。:我正在使用Windows 8
答案 0 :(得分:23)
感谢由http-conduit支持的tls等软件包,您可以使用simpleHttp进行HTTPS。
http-conduit
tls
simpleHttp
> import Network.HTTP.Conduit > simpleHttp "https://github.com" ... big ugly bytestring that can be parsed in so many ways...