Sample code for 30+ languages & platforms
Lianja

Example: Http.ClearHeaders method

Demonstrates how to call the ClearHeaders method.

Also see: Chilkat Http Default and Auto-Filled Headers

Chilkat Lianja Downloads

Lianja
llSuccess = .F.

loHttp = createobject("CkHttp")

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

lcResponseBody = loHttp.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
// Examine the request header we just sent..
? loHttp.LastHeader
? "----"

// 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:
loHttp.ClearHeaders()

lcResponseBody = loHttp.QuickGetStr("https://chilkatsoft.com/helloWorld.txt")
? loHttp.LastHeader

// Output:

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


release loHttp