curl
最新バージョン 1.3.7 の haskell ライブラリに問題があります。
Haskell での例:
module CurlTest where
import Network.Curl
url = "http://www.example.com/private/"
opts = [CurlFollowLocation True]
main = withCurlDo $ do
curlGet url opts
return ()
このスニペットを ghci で実行しましたが、何も出力されませんでした。ステータス コード 200 の公開サイトでは、ページ コンテンツを取得します。コマンドラインからピュアを使用curl
すると、予想どおり、401 サイトでもページ コンテンツを取得できます。
haskell -call のオプションを見逃したのcurl
ですか、それともバグですか? バグの場合、curl
haskell に回避策または代替手段はありますか?
ご挨拶