Chilkat HOME .NET Core C# Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi ActiveX Delphi DLL Go Java Lianja Mono C# Node.js Objective-C PHP ActiveX PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift 2 Swift 3,4,5... Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(PowerBuilder) POST application/x-www-form-urlencoded Two WaysThis example explains how a POST with params can be formatted in different ways. Params can be encoded in the URL, in which case they appear in the "start line" of the HTTP request, or params can be placed within the body of the request. A properly implemented server SHOULD accept both -- it SHOULD make no difference where the params are located. They are simply the params of a POST. But alas, many servers are not, and we need to cope with the particulars..
integer li_rc oleobject loo_Http oleobject loo_Resp oleobject loo_HttpB oleobject loo_ReqB oleobject loo_RespB // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. // We start with this CURL statement: // curl -X POST "https://xyz.softeon.com/api/token?grant_type=client_credentials&resource=https://xyz.softeon.com/resources&scope=openid&client_id=AAA&client_secret=BBB" -H "Content-Type: application/x-www-form-urlencoded" // Postman would send the following request: // POST /api/token?grant_type=client_credentials&resource=https://xyz.softeon.com/resources&scope=openid&client_id=AAA&client_secret=BBB HTTP/1.1 // Content-Type: application/x-www-form-urlencoded // User-Agent: PostmanRuntime/7.26.8 // Accept: */* // Cache-Control: no-cache // Postman-Token: 719e6ada-5b0e-4d3f-8166-37433efdcaa1 // Host: xyz.softeon.com // Accept-Encoding: gzip, deflate, br // Connection: keep-alive // Content-Length: 0 // We can see that the params are located in the "start line" of the HTTP request, and the request has no body (the Content-Length is 0). // You can use Chilkat's online tool to generate the code for the above CURL statement. // Generate Source Code from CURL Statement // // Here's the generated code: loo_Http = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_Http.ConnectToNewObject("Chilkat.Http") if li_rc < 0 then destroy loo_Http MessageBox("Error","Connecting to COM object failed") return end if // We can see the exact HTTP request sent by setting a session log filename: loo_Http.SessionLogFilename = "qa_output/sessionLog.txt" loo_Http.SetRequestHeader("Content-Type","application/x-www-form-urlencoded") loo_Resp = loo_Http.QuickRequest("POST","https://xyz.softeon.com/api/token?grant_type=client_credentials&resource=https://xyz.softeon.com/resources&scope=openid&client_id=AAA&client_secret=BBB") if loo_Http.LastMethodSuccess = 0 then Write-Debug loo_Http.LastErrorText destroy loo_Http return end if Write-Debug "Response body:" Write-Debug loo_Resp.BodyStr destroy loo_Resp // Here's what is sent by Chilkat. It is essentially the same thing: // POST /api/token?grant_type=client_credentials&resource=https://xyz.softeon.com/resources&scope=openid&client_id=AAA&client_secret=BBB HTTP/1.1 // Host: xyz.softeon.com // Accept: */* // Accept-Encoding: gzip // Content-Type: application/x-www-form-urlencoded // Content-Length: 0 // ------------------------------------------------------------------------------------------------------------------------------------------------- // Now let's look at the alternative way of sending a POST application/x-www-form-urlencoded, // where the params are contained within the body of the request. // curl -X POST https://xyz.softeon.com/api/token \ // -H 'Content-Type: application/x-www-form-urlencoded;charset=UTF-8' \ // -d 'grant_type=client_credentials' \ // -d 'resource=https://xyz.softeon.com/resources' \ // -d 'scope=openid' \ // -d 'client_id=AAA' \ // -d 'client_secret=BBB' // The Chilkat tool at https://tools.chilkat.io/curlHttp.cshtml // generates the following code: // (We changed the names of the variables to keep things entirely separate from the above code.) loo_HttpB = create oleobject // Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 li_rc = loo_HttpB.ConnectToNewObject("Chilkat.Http") loo_HttpB.SessionLogFilename = "qa_output/sessionLogB.txt" loo_ReqB = create oleobject // Use "Chilkat_9_5_0.HttpRequest" for versions of Chilkat < 10.0.0 li_rc = loo_ReqB.ConnectToNewObject("Chilkat.HttpRequest") loo_ReqB.HttpVerb = "POST" loo_ReqB.Path = "/api/token" loo_ReqB.ContentType = "application/x-www-form-urlencoded" loo_ReqB.AddParam("grant_type","client_credentials") loo_ReqB.AddParam("resource","https://xyz.softeon.com/resources") loo_ReqB.AddParam("scope","openid") loo_ReqB.AddParam("client_id","AAA") loo_ReqB.AddParam("client_secret","BBB") loo_RespB = loo_HttpB.PostUrlEncoded("https://xyz.softeon.com/api/token",loo_ReqB) if loo_HttpB.LastMethodSuccess = 0 then Write-Debug loo_HttpB.LastErrorText destroy loo_Http destroy loo_HttpB destroy loo_ReqB return end if Write-Debug "Response body:" Write-Debug loo_RespB.BodyStr destroy loo_RespB // Looking at the sessionLogB.txt, we can see the following HTTP POST was sent: // POST /api/token HTTP/1.1 // Host: xyz.softeon.com // Content-Type: application/x-www-form-urlencoded // Content-Length: 134 // // grant_type=client_credentials&resource=https%3A%2F%2Fxyz.softeon.com%2Fresources&scope=openid&client_id=AAA&client_secret=BBB // -- // Notice how the params are sent in the body of the request. The Content-Length is now non-zero, and the params are not present in the start-line of the HTTP request. // Technically, this SHOULD be equivalent to the above request where the params are in the start-line. // Unfortunately, many servers are brittle and stupid and want the POST to be in a particular form. destroy loo_RespB destroy loo_Http destroy loo_HttpB destroy loo_ReqB |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.