Skip to content

Instantly share code, notes, and snippets.

@iwilsonq
Created March 23, 2019 21:55
Show Gist options
  • Save iwilsonq/1ea506523a2281be3d03d3714de8495c to your computer and use it in GitHub Desktop.
Save iwilsonq/1ea506523a2281be3d03d3714de8495c to your computer and use it in GitHub Desktop.
open Lwt
open Cohttp
open Cohttp_lwt_unix
let body =
 Client.get (Uri.of_string "https://ianwilson.io/") >>= fun (resp, body) ->
 let code = resp |> Response.status |> Code.code_of_status in
 Printf.printf "Response code: %d\n" code;
 Printf.printf "Headers: %s\n" (resp |> Response.headers |> Header.to_string);
 body |> Cohttp_lwt.Body.to_string >|= fun body ->
 Printf.printf "Body of length: %d\n" (String.length body);
 body
let () =
 let body = Lwt_main.run body in
 print_endline ("Received body \n" ^ body)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment