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) Demonstrate the REST FullRequestNoBodySb MethodSee more REST ExamplesDemonstrates the FullRequestNoBodySb method, which sends an HTTP request with no body and receives the response in a Chilkat StringBuilder object.
integer li_rc oleobject loo_Rest integer li_BTls integer li_Port integer li_BAutoReconnect integer li_Success oleobject loo_SbJson // This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. loo_Rest = create oleobject // Use "Chilkat_9_5_0.Rest" for versions of Chilkat < 10.0.0 li_rc = loo_Rest.ConnectToNewObject("Chilkat.Rest") if li_rc < 0 then destroy loo_Rest MessageBox("Error","Connecting to COM object failed") return end if // Connect to the REST server. li_BTls = 1 li_Port = 443 li_BAutoReconnect = 1 li_Success = loo_Rest.Connect("chilkatsoft.com",li_Port,li_BTls,li_BAutoReconnect) if li_Success = 0 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest return end if // Send an HTTP request with no body... // An HTTP request with no body is a simple HTTP request that is typically a GET or DELETE. // (POST and PUT requests typically have a request body.) // The GET method is used to request data from a specified resource, // and it does not have a request body. Here's an example of an HTTP GET request: // // GET /api/data HTTP/1.1 // Host: example.com // Accept: application/json // // - The HTTP method (also known as the verb) is "GET," indicating that the client wants to retrieve data from the specified resource. // - The request path is "/api/data," representing the resource the client wants to access. // - The "Host" header specifies the hostname of the server being requested. Chilkat automatically adds it. // - The "Accept" header indicates the media type (MIME type) that the client can understand and would like to receive in the response. In this case, it specifies that the client prefers to receive data in JSON format. // // Since the GET method does not have a request body, the request ends after the headers. // The server will process the request, retrieve the requested data (if available), and respond with an HTTP response // containing the requested data (if any) in the message body. // // The body of the HTTP response is written to the StringBuilder object (overwriting whatever content the StringBuilder may have already contained). // loo_Rest.AddHeader("Accept","application/json") loo_SbJson = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbJson.ConnectToNewObject("Chilkat.StringBuilder") li_Success = loo_Rest.FullRequestNoBodySb("GET","/testData/helloWorld.json",loo_SbJson) if li_Success = 0 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest destroy loo_SbJson return end if Write-Debug "Response status code = " + string(loo_Rest.ResponseStatusCode) Write-Debug "Response body:" Write-Debug loo_SbJson.GetAsString() destroy loo_Rest destroy loo_SbJson |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.