![]() |
Chilkat HOME Android™ AutoIt C C# C++ Chilkat2-Python CkPython Classic ASP DataFlex Delphi DLL Go Java Node.js Objective-C PHP Extension Perl PowerBuilder PowerShell PureBasic Ruby SQL Server Swift Tcl Unicode C Unicode C++ VB.NET VBScript Visual Basic 6.0 Visual FoxPro Xojo Plugin
(Go) POST JSON to REST API with non-us-ascii Chars EscapedSee more REST ExamplesDemonstrates how to POST to a REST API with non-usascii chars within JSON Unicode escaped.Note: This example requires Chilkat v11.1.0 or greater.
success := false success = false rest := Rest_Ref.html">chilkat.NewRest() // Connect using TLS. bAutoReconnect := true success = rest.Connect("chilkatsoft.com",443,true,bAutoReconnect) // Load JSON containing the following Korean text. // { // "BillAddr": { // "Id": "239615", // "Line1": "류리하", // "Line2": "류리하류리하", // "City": "류리하류리하", // "Country": "US", // "CountrySubDivisionCode": "AK", // "PostalCode": "류리하" // } // } json := JsonObject_Ref.html">chilkat.NewJsonObject() json.SetEmitCompact(false) success = json.LoadFile("qa_data/json/korean.json") if success == false { fmt.Println(json.LastErrorText()) rest.DisposeRest() json.DisposeJsonObject() return } success = rest.AddHeader("Content-Type","application/json; charset=UTF-8") sb := StringBuilder_Ref.html">chilkat.NewStringBuilder() json.EmitSb(sb) sb.Encode("unicodeescape","utf-8") fmt.Println(*sb.GetAsString()) // The StringBuilder_Ref.html">StringBuilder contains this: // { // "BillAddr": { // "Id": "239615", // "Line1": "\ub958\ub9ac\ud558", // "Line2": "\ub958\ub9ac\ud558\ub958\ub9ac\ud558", // "City": "\ub958\ub9ac\ud558\ub958\ub9ac\ud558", // "Country": "US", // "CountrySubDivisionCode": "AK", // "PostalCode": "\ub958\ub9ac\ud558" // } // } sbResp := StringBuilder_Ref.html">chilkat.NewStringBuilder() success = rest.FullRequestSb("POST","/echo_request_body.asp",sb,sbResp) if success == false { fmt.Println(rest.LastErrorText()) rest.DisposeRest() json.DisposeJsonObject() sb.DisposeStringBuilder() sbResp.DisposeStringBuilder() return } // Show the response. fmt.Println("Json Response: ", *sbResp.GetAsString()) rest.DisposeRest() json.DisposeJsonObject() sb.DisposeStringBuilder() sbResp.DisposeStringBuilder() |
© 2000-2025 Chilkat Software, Inc. All Rights Reserved.