Created
July 5, 2016 19:08
-
-
Save 0xYUANTI/c4cfae56da20f0245e0778799d24a3ff to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* example from cohttp readme, works with rebuild -pkg cohttp.lwt wtf.native */ | |
open Lwt; | |
open Cohttp; | |
open Cohttp_lwt_unix; | |
let coroutine = | |
Client.get (Uri.of_string "http://www.reddit.com/") >>= fun (resp, body) => { | |
let code = resp |> Response.status |> Code.code_of_status; | |
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 x = Lwt_main.run coroutine; | |
print_endline ("Received body\n" ^ x); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment