Sample code for 30+ languages & platforms
JavaScript

Example: Http.ClearHeaders method

Demonstrates how to call the ClearHeaders method.

Also see: Chilkat Http Default and Auto-Filled Headers

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();

// Add a request header.
http.SetRequestHeader("X-Something","1234");
http.SetRequestHeader("X-Example","5678");

var responseBody = http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt");
// Examine the request header we just sent..
console.log(http.LastHeader);
console.log("----");

// Output:

// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip
// X-Something: 1234
// X-Example: 5678

// Remove the request headers we previously added:
http.ClearHeaders();

responseBody = http.QuickGetStr("https://chilkatsoft.com/helloWorld.txt");
console.log(http.LastHeader);

// Output:

// GET /helloWorld.txt HTTP/1.1
// Host: chilkatsoft.com
// Accept: */*
// Accept-Encoding: gzip