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
(Go) 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.
// This example requires the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. rest := chilkat.NewRest() // Connect to the REST server. bTls := true port := 443 bAutoReconnect := true success := rest.Connect("chilkatsoft.com",port,bTls,bAutoReconnect) if success == false { fmt.Println(rest.LastErrorText()) rest.DisposeRest() return } // 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). // rest.AddHeader("Accept","application/json") sbJson := chilkat.NewStringBuilder() success = rest.FullRequestNoBodySb("GET","/testData/helloWorld.json",sbJson) if success == false { fmt.Println(rest.LastErrorText()) rest.DisposeRest() sbJson.DisposeStringBuilder() return } fmt.Println("Response status code = ", rest.ResponseStatusCode()) fmt.Println("Response body:") fmt.Println(*sbJson.GetAsString()) rest.DisposeRest() sbJson.DisposeStringBuilder() |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.