Sample code for 30+ languages & platforms
DataFlex

HTTPS PUT application/x-www-form-urlencoded

See more HTTP Examples

Demonstrates two ways of sending an HTTPS PUT application/x-www-form-urlencoded request.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoHttp
    String sUrl
    Variant vResp
    Handle hoResp
    Variant vReq
    Handle hoReq
    String sTemp1
    Integer iTemp1

    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

    // The 1st example sends a PUT with the query params in the URL.
    // The body of the request will be empty.
    Move "https://example.com/leads/12345678?uid=XXXX&apikey=YYYYYY&notes=Test_Note" To sUrl

    // Sends the following request:

    // PUT /leads/12345678?uid=XXXX&apikey=YYYYYY&notes=Test_Note HTTP/1.1
    // Host: example.com
    // Accept: */*
    // Accept-Encoding: gzip
    // Content-Length: 0
    // 

    Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
    If (Not(IsComObjectCreated(hoResp))) Begin
        Send CreateComObject of hoResp
    End
    Get pvComObject of hoResp to vResp
    Get ComHttpStr Of hoHttp "PUT" sUrl "" "" "application/x-www-form-urlencoded" vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln "Response status code = " iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln "Response body: " sTemp1

    // -----------------------------------------------------------------------
    // Now we send the same request, but instead the query params are in the HTTP request body.

    Get Create (RefClass(cComChilkatHttpRequest)) To hoReq
    If (Not(IsComObjectCreated(hoReq))) Begin
        Send CreateComObject of hoReq
    End
    Set ComHttpVerb Of hoReq To "PUT"
    Set ComPath Of hoReq To "/leads/12345678"
    Send ComAddParam To hoReq "uid" "XXXX"
    Send ComAddParam To hoReq "apikey" "YYYYYY"
    Send ComAddParam To hoReq "notes" "Test_Note"

    // Sends the following request:

    // POST /leads/12345678 HTTP/1.1
    // Host: example.com
    // Content-Type: application/x-www-form-urlencoded
    // Content-Length: 38
    // 
    // uid=XXXX&apikey=YYYYYY&notes=Test_Notereq.HttpVerb = "POST";
    Set ComHttpVerb Of hoReq To "POST"
    Set ComContentType Of hoReq To "application/x-www-form-urlencoded"

    Get pvComObject of hoReq to vReq
    Get pvComObject of hoResp to vResp
    Get ComHttpReq Of hoHttp "https://example.com/leads/12345678" vReq vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get ComStatusCode Of hoResp To iTemp1
    Showln "Response status code = " iTemp1
    Get ComBodyStr Of hoResp To sTemp1
    Showln "Response body: " sTemp1


End_Procedure