如何在ocamlnet的netclient中设置Http_client的用户代理?

时间:2012-12-17 01:25:56

标签: ocaml

也许我错过了一些明显的东西,但docs并没有向我透露任何东西。

解决方案或解决方法非常有用。

1 个答案:

答案 0 :(得分:5)

使用方法set_req_header : string -> string -> unit

let req = new Http_client.get (Neturl.string_of_url some_url) in
    req#set_req_header "User-Agent" "Your user agent";

而不是提出要求。