// [snippet:Making the request] open System open FSharp.Data // To call the service, send POST request to http://fssnip.net/api/format let sample = Http.RequestString ( "http://fssnip.net/api/format", httpMethod="POST", // Use "Content-Type" header to specify we're using first version of the API headers=[HttpRequestHeaders.ContentType "application/vnd.fssnip-v1+json"], // Provide a list of snippets (later snippets can use values from earlier) // Additional (optional) fields let you specify NuGet packages to reference, // prefix to use in generated HTML (to make IDs from multiple requests unique) // and disable line numbers (enabled by default) body=HttpRequestBody.TextRequest """{ "snippets": [ "let hello = FSharp.Data.Http.RequestString(\"http://fssnip.net\")", "printfn \"Got %d characters\" hello.Length" ], "packages": [ "FSharp.Data" ], "prefix": "fs", "lineNumbers":false }""") // [/snippet] // [snippet:Parsing the response] // The response from the API is a JSON object with two fields: // - snippets is a list with HTML (same length as length of the input collection) // - tips is a string with generated tooltips (used by JavaScript) // // { "snippets": [ // "
...\r\n", // "
...\r\n" ] // "tips": "