Sample code for 30+ languages & platforms
JavaScript

Example: Http.GetLastJsonData method

Demonstrates the GetLastJsonData method.
Note
This example is intended for running within a Chilkat.Js embedded JavaScript engine. All Chilkat JavaScript examples require Chilkat v11.4.0 or greater.
JavaScript
var success = false;

var http = new CkHttp();
var resp = new CkHttpResponse();

// Only allow TLS 1.2 or better.
http.SslProtocol = "TLS 1.2 or higher";

success = http.HttpNoBody("GET","https://google.com/",resp);
if (success == false) {
    console.log(http.LastErrorText);
    return;
}

var json = new CkJsonObject();
json.EmitCompact = false;

http.GetLastJsonData(json);
console.log(json.Emit());

// Output as of Chilkat v11.1.0
// Additional information may be added as requested or needed in future versions of Chilkat.

// {
//   "tls": {
//     "params": {
//       "sniHostname": "www.google.com",
//       "allowConnectionOnlyIfServerChooses": "TLS 1.2 or higher"
//     },
//     "negotiatedTlsVersion": "TLS 1.3"
//   }
// }