Sample code for 30+ languages & platforms
CkPython

Get a REST Response Header Value by Index

See more REST Examples

Demonstrates Rest.ResponseHdrValue, which returns the value of the response header at a zero-based index. The same index used with ResponseHdrName gives the corresponding field name.

Background. Response headers can be enumerated by index from 0 through NumResponseHeaders minus one, after ReadResponseHeader has been called.

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

success = False

rest = chilkat.CkRest()
bTls = True
bAutoReconnect = True
success = rest.Connect("example.com",443,bTls,bAutoReconnect)
if (success == False):
    print(rest.lastErrorText())
    sys.exit()

success = rest.SendReqNoBody("GET","/api/items/123")
if (success == False):
    print(rest.lastErrorText())
    sys.exit()

statusCode = rest.ReadResponseHeader()
if (statusCode < 0):
    print(rest.lastErrorText())
    sys.exit()

#  Return the value of the response header at a zero-based index.  Use the same index with
#  ResponseHdrName to get the corresponding field name.
numHeaders = rest.get_NumResponseHeaders()

for i in range(0,numHeaders):
    value = rest.responseHdrValue(i)
    if (rest.get_LastMethodSuccess() == False):
        print(rest.lastErrorText())
        sys.exit()

    print("Header " + str(i) + " value: " + value)