| (DataFlex) Add Additional Headers to HTTP RequestsShows how to add a additional HTTP headers to HTTP requests.Also see: Chilkat Http Default and Auto-Filled Headers 
 Use ChilkatAx-win32.pkg
Procedure Test
    Boolean iSuccess
    Handle hoHttp
    String sResponseBody
    Move False To iSuccess
    // This example assumes the Chilkat API to have been previously unlocked.
    // See Global Unlock Sample for sample code.
    Get Create (RefClass(cComChilkatHttp)) To hoHttp
    If (Not(IsComObjectCreated(hoHttp))) Begin
        Send CreateComObject of hoHttp
    End
    // Add a few request headers to be sent with all requests.
    Send ComSetRequestHeader To hoHttp "X-CSRF-Token" "Fetch"
    Send ComSetRequestHeader To hoHttp "X-Example" "123ABC"
    // The following request will be sent:
    // GET /helloWorld.txt HTTP/1.1
    // Host: chilkatsoft.com
    // Accept: */*
    // Accept-Encoding: gzip
    // X-CSRF-Token: Fetch
    // X-Example: 123ABC
    // Send an HTTP GET request and return the response body.
    Get ComQuickGetStr Of hoHttp "https://chilkatsoft.com/helloWorld.txt" To sResponseBody
    Showln sResponseBody
End_Procedure
 |