Windows認証が有効なIISでホストされているページからhtmlを取得しようとしています。F#Windows資格情報を使用したデータのHTTP要求
は、これまでのところ私が持っている:
open FSharp.Data
[<EntryPoint>]
let main argv =
let html = Http.RequestString ("http://mywebsite.com/Detail.aspx", query=[("zip","9000");("date","11/01/2017")], headers=[???])
printf "%s" html
System.Console.ReadLine() |> ignore
0 // return an integer exit code
私は、ヘッダーリストに追加するには何が必要ですか?
標準の.NET Webリクエストビルディングを検討しましたか? Windows認証の詳細については、[このページ](http://stackoverflow.com/questions/3562979/making-a-web-request-to-a-web-page-which-requires-windows-authentication)を参照してください。 –