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
(Delphi ActiveX) Shopify Receive Count of All Products in a CollectionGet a count of all products of a given collection
uses Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics, Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls, Chilkat_TLB; ... procedure TForm1.Button1Click(Sender: TObject); var rest: TChilkatRest; success: Integer; sbJson: TChilkatStringBuilder; json: TChilkatJsonObject; count: Integer; begin rest := TChilkatRest.Create(Self); rest.SetAuthBasic('SHOPIFY_PRIVATE_API_KEY','SHOPIFY_PRIVATE_API_KEY'); success := rest.Connect('chilkat.myshopify.com',443,1,1); if (success <> 1) then begin Memo1.Lines.Add(rest.LastErrorText); Exit; end; sbJson := TChilkatStringBuilder.Create(Self); success := rest.FullRequestNoBodySb('GET','/admin/products/count.json?collection_id=841564295 ',sbJson.ControlInterface); if (success <> 1) then begin Memo1.Lines.Add(rest.LastErrorText); Exit; end; if (rest.ResponseStatusCode <> 200) then begin Memo1.Lines.Add('Received error response code: ' + IntToStr(rest.ResponseStatusCode)); Memo1.Lines.Add('Response body:'); Memo1.Lines.Add(sbJson.GetAsString()); Exit; end; json := TChilkatJsonObject.Create(Self); json.LoadSb(sbJson.ControlInterface); // The following code parses the JSON response. // A sample JSON response is shown below the sample code. count := json.IntOf('count'); // A sample JSON response body that is parsed by the above code: // { // "count": 1 // } Memo1.Lines.Add('Example Completed.'); end; |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.