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
(SQL Server) Faire - Get All ProductsSee more Faire ExamplesRetrieves a list of products, ordered ascending by updated_at. By default, it only returns non-deleted products. For more information, see https://faire.github.io/external-api-docs/#get-all-products
-- Important: See this note about string length limitations for strings returned by sp_OAMethod calls. -- CREATE PROCEDURE ChilkatSample AS BEGIN DECLARE @hr int DECLARE @iTmp0 int -- Important: Do not use nvarchar(max). See the warning about using nvarchar(max). DECLARE @sTmp0 nvarchar(4000) -- This example assumes the Chilkat API to have been previously unlocked. -- See Global Unlock Sample for sample code. DECLARE @http int -- Use "Chilkat_9_5_0.Http" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.Http', @http OUT IF @hr <> 0 BEGIN PRINT 'Failed to create ActiveX component' RETURN END DECLARE @success int -- Implements the following CURL command: -- curl -X GET -H "X-FAIRE-ACCESS-TOKEN: <access_token>" -d "limit=50" -d "page=1" https://www.faire.com/api/v1/products -- Use the following online tool to generate HTTP code from a CURL command -- Convert a cURL Command to HTTP Source Code DECLARE @queryParams int -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @queryParams OUT EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'limit', 50 EXEC sp_OAMethod @queryParams, 'UpdateInt', @success OUT, 'page', 1 EXEC sp_OAMethod @http, 'SetRequestHeader', NULL, 'X-FAIRE-ACCESS-TOKEN', '<access_token>' DECLARE @resp int EXEC sp_OAMethod @http, 'QuickRequestParams', @resp OUT, 'GET', 'https://www.faire.com/api/v1/products', @queryParams EXEC sp_OAGetProperty @http, 'LastMethodSuccess', @iTmp0 OUT IF @iTmp0 = 0 BEGIN EXEC sp_OAGetProperty @http, 'LastErrorText', @sTmp0 OUT PRINT @sTmp0 EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @queryParams RETURN END DECLARE @sbResponseBody int -- Use "Chilkat_9_5_0.StringBuilder" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.StringBuilder', @sbResponseBody OUT EXEC sp_OAMethod @resp, 'GetBodySb', @success OUT, @sbResponseBody DECLARE @jResp int -- Use "Chilkat_9_5_0.JsonObject" for versions of Chilkat < 10.0.0 EXEC @hr = sp_OACreate 'Chilkat.JsonObject', @jResp OUT EXEC sp_OAMethod @jResp, 'LoadSb', @success OUT, @sbResponseBody EXEC sp_OASetProperty @jResp, 'EmitCompact', 0 PRINT 'Response Body:' EXEC sp_OAMethod @jResp, 'Emit', @sTmp0 OUT PRINT @sTmp0 DECLARE @respStatusCode int EXEC sp_OAGetProperty @resp, 'StatusCode', @respStatusCode OUT PRINT 'Response Status Code = ' + @respStatusCode IF @respStatusCode >= 400 BEGIN PRINT 'Response Header:' EXEC sp_OAGetProperty @resp, 'Header', @sTmp0 OUT PRINT @sTmp0 PRINT 'Failed.' EXEC @hr = sp_OADestroy @resp EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @queryParams EXEC @hr = sp_OADestroy @sbResponseBody EXEC @hr = sp_OADestroy @jResp RETURN END EXEC @hr = sp_OADestroy @resp -- Sample JSON response: -- (Sample code for parsing the JSON response is shown below) -- { -- "page": 1, -- "limit": 50, -- "products": [ -- { -- "id": "p_123", -- "brand_id": "b_abc", -- "short_description": "Our candles smell fantastic. Want to know how good? Read our description!", -- "description": "Glad you decided to read our description! We have significantly more characters to describe to you just how good our candles smell.", -- "wholesale_price_cents": 500, -- "retail_price_cents": 1000, -- "sale_state": "FOR_SALE", -- "active": true, -- "deleted": false, -- "name": "Faire's fantastic candle", -- "unit_multiplier": 8, -- "taxonomy_type": { -- "id": "tt_23nl3bzl00", -- "name": "Votive Candle" -- }, -- "options": [ -- ], -- "created_at": "20190314T000915.000Z", -- "updated_at": "20190315T000915.000Z" -- } -- ] -- } -- Sample code for parsing the JSON response... -- Use the following online tool to generate parsing code from sample JSON: -- Generate Parsing Code from JSON DECLARE @id nvarchar(4000) DECLARE @brand_id nvarchar(4000) DECLARE @short_description nvarchar(4000) DECLARE @description nvarchar(4000) DECLARE @wholesale_price_cents int DECLARE @retail_price_cents int DECLARE @sale_state nvarchar(4000) DECLARE @active int DECLARE @deleted int DECLARE @name nvarchar(4000) DECLARE @unit_multiplier int DECLARE @taxonomy_typeId nvarchar(4000) DECLARE @taxonomy_typeName nvarchar(4000) DECLARE @created_at nvarchar(4000) DECLARE @updated_at nvarchar(4000) DECLARE @j int DECLARE @count_j int DECLARE @page int EXEC sp_OAMethod @jResp, 'IntOf', @page OUT, 'page' DECLARE @limit int EXEC sp_OAMethod @jResp, 'IntOf', @limit OUT, 'limit' DECLARE @i int SELECT @i = 0 DECLARE @count_i int EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_i OUT, 'products' WHILE @i < @count_i BEGIN EXEC sp_OASetProperty @jResp, 'I', @i EXEC sp_OAMethod @jResp, 'StringOf', @id OUT, 'products[i].id' EXEC sp_OAMethod @jResp, 'StringOf', @brand_id OUT, 'products[i].brand_id' EXEC sp_OAMethod @jResp, 'StringOf', @short_description OUT, 'products[i].short_description' EXEC sp_OAMethod @jResp, 'StringOf', @description OUT, 'products[i].description' EXEC sp_OAMethod @jResp, 'IntOf', @wholesale_price_cents OUT, 'products[i].wholesale_price_cents' EXEC sp_OAMethod @jResp, 'IntOf', @retail_price_cents OUT, 'products[i].retail_price_cents' EXEC sp_OAMethod @jResp, 'StringOf', @sale_state OUT, 'products[i].sale_state' EXEC sp_OAMethod @jResp, 'BoolOf', @active OUT, 'products[i].active' EXEC sp_OAMethod @jResp, 'BoolOf', @deleted OUT, 'products[i].deleted' EXEC sp_OAMethod @jResp, 'StringOf', @name OUT, 'products[i].name' EXEC sp_OAMethod @jResp, 'IntOf', @unit_multiplier OUT, 'products[i].unit_multiplier' EXEC sp_OAMethod @jResp, 'StringOf', @taxonomy_typeId OUT, 'products[i].taxonomy_type.id' EXEC sp_OAMethod @jResp, 'StringOf', @taxonomy_typeName OUT, 'products[i].taxonomy_type.name' EXEC sp_OAMethod @jResp, 'StringOf', @created_at OUT, 'products[i].created_at' EXEC sp_OAMethod @jResp, 'StringOf', @updated_at OUT, 'products[i].updated_at' SELECT @j = 0 EXEC sp_OAMethod @jResp, 'SizeOfArray', @count_j OUT, 'products[i].options' WHILE @j < @count_j BEGIN EXEC sp_OASetProperty @jResp, 'J', @j SELECT @j = @j + 1 END SELECT @i = @i + 1 END EXEC @hr = sp_OADestroy @http EXEC @hr = sp_OADestroy @queryParams EXEC @hr = sp_OADestroy @sbResponseBody EXEC @hr = sp_OADestroy @jResp END GO |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.