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) Duplicate curl POST with JSON BodyDemonstrates how to duplicate the following curl command, which sends a POST w/ a JSON body. curl -H "Content-Type: application/json" -i https://my-store.com/wp-json/wc/v2/products/batch?consumer_key=YOUR_CONSUMER_KEY&consumer_secret=YOUR_CONSUMER_SECRET -d @test_product.txt
integer li_rc integer li_Success oleobject loo_Rest integer li_BAutoReconnect oleobject loo_SbJson string ls_JsonResponseStr // This example assumes 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 using TLS. li_BAutoReconnect = 1 li_Success = loo_Rest.Connect("my-store.com",443,1,li_BAutoReconnect) // test_product.txt contains this string: loo_SbJson = create oleobject // Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 li_rc = loo_SbJson.ConnectToNewObject("Chilkat.StringBuilder") loo_SbJson.Append("{~"create~": [{~"name~": ~"Woo Single #1~",~"type~": ~"simple~",~"regular_price~": ~"21.99~"}]}") // Add query parameters // Add the Content-Type HTTP request header. li_Success = loo_Rest.AddHeader("Content-Type","application/json") ls_JsonResponseStr = loo_Rest.FullRequestString("POST","/wp-json/wc/v2/products/batch?consumer_key=YOUR_CONSUMER_KEY&consumer_secret=YOUR_CONSUMER_SECRET",loo_SbJson.GetAsString()) if loo_Rest.LastMethodSuccess <> 1 then Write-Debug loo_Rest.LastErrorText destroy loo_Rest destroy loo_SbJson return end if // Show the JSON response. (See below for a sample JSON response.) Write-Debug "Json Response: " + ls_JsonResponseStr destroy loo_Rest destroy loo_SbJson |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.