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) WiX - Get all Products in a StoreGets the first page of products in a store. For more information, see https://dev.wix.com/api/rest/wix-stores/catalog/filter-and-sort
// This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. http := chilkat.NewHttp() var success bool // Implements the following CURL command: // curl -X POST -H "Content-Type: application/json" \ // -d '{ // "includeVariants": true // }' https://www.wixapis.com/stores/v1/products/query json := chilkat.NewJsonObject() json.UpdateBool("includeVariants",true) http.SetAuthToken("ACCESS_TOKEN") http.SetRequestHeader("Content-Type","application/json") resp := http.PostJson3("https://www.wixapis.com/stores/v1/products/query","application/json",json) if http.LastMethodSuccess() == false { fmt.Println(http.LastErrorText()) http.DisposeHttp() json.DisposeJsonObject() return } sbResponseBody := chilkat.NewStringBuilder() resp.GetBodySb(sbResponseBody) jResp := chilkat.NewJsonObject() jResp.LoadSb(sbResponseBody) jResp.SetEmitCompact(false) fmt.Println("Response Body:") fmt.Println(*jResp.Emit()) respStatusCode := resp.StatusCode() fmt.Println("Response Status Code = ", respStatusCode) if respStatusCode >= 400 { fmt.Println("Response Header:") fmt.Println(resp.Header()) fmt.Println("Failed.") resp.DisposeHttpResponse() http.DisposeHttp() json.DisposeJsonObject() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() return } resp.DisposeHttpResponse() // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "products": [ // { // "id": "58fcbb51-ff87-08ff-d97b-646726676e4a", // "name": "webhook test", // "slug": "webhook-test", // "visible": true, // "productType": "physical", // "description": "<p>fasdf<\/p>", // "stock": { // "trackInventory": true, // "quantity": 0, // "inStock": false // }, // "price": { // "currency": "ILS", // "price": 234, // "discountedPrice": 234, // "formatted": { // "price": "234.00 ", // "discountedPrice": "234.00 " // } // }, // "priceData": { // "currency": "ILS", // "price": 234, // "discountedPrice": 234, // "formatted": { // "price": "234.00 ", // "discountedPrice": "234.00 " // } // }, // "additionalInfoSections": [ // ], // "ribbons": [ // { // "text": "ribby" // } // ], // "media": { // "items": [ // ] // }, // "customTextFields": [ // ], // "manageVariants": true, // "productOptions": [ // ], // "productPageUrl": { // "base": "https://www.my-website.com/", // "path": "/product-page/webhook-test" // }, // "numericId": "1567078000586000", // "inventoryItemId": "a70344ae-0078-f700-2684-9b98d99891b5", // "discount": { // "type": "NONE", // "value": 0 // }, // "collectionIds": [ // ], // "variants": [ // ] // }, // { // "id": "6507fd67-94e5-10af-73e4-d2167852d5bc", // "name": "digital product", // "slug": "digital-product", // "visible": true, // "productType": "digital", // "description": "", // "sku": "", // "weight": 0, // "stock": { // "trackInventory": false, // "inStock": true // }, // "price": { // "currency": "ILS", // "price": 123, // "discountedPrice": 123, // "formatted": { // "price": "123.00 ", // "discountedPrice": "123.00 " // } // }, // "priceData": { // "currency": "ILS", // "price": 123, // "discountedPrice": 123, // "formatted": { // "price": "123.00 ", // "discountedPrice": "123.00 " // } // }, // "additionalInfoSections": [ // ], // "ribbons": [ // ], // "media": { // "items": [ // ] // }, // "customTextFields": [ // ], // "manageVariants": false, // "productOptions": [ // ], // "productPageUrl": { // "base": "https://www.my-website.com/", // "path": "/product-page/digital-product" // }, // "numericId": "1544009414325000", // "inventoryItemId": "9af80298-6b1a-ef50-8c1b-2de987ad2a43", // "discount": { // "type": "NONE", // "value": 0 // }, // "collectionIds": [ // "ae886d55-2572-eee8-b2c4-13219844b5e4" // ], // "variants": [ // ] // } // ], // "metadata": { // "items": 100, // "offset": 0 // }, // "totalResults": 2 // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON var id *string = new(string) var name *string = new(string) var slug *string = new(string) var visible bool var productType *string = new(string) var description *string = new(string) var stockTrackInventory bool var stockQuantity int var stockInStock bool var priceCurrency *string = new(string) var pricePrice int var priceDiscountedPrice int var priceFormattedPrice *string = new(string) var priceFormattedDiscountedPrice *string = new(string) var priceDataCurrency *string = new(string) var priceDataPrice int var priceDataDiscountedPrice int var priceDataFormattedPrice *string = new(string) var priceDataFormattedDiscountedPrice *string = new(string) var manageVariants bool var productPageUrlBase *string = new(string) var productPageUrlPath *string = new(string) var numericId *string = new(string) var inventoryItemId *string = new(string) var discountType *string = new(string) var discountValue int var sku *string = new(string) var weight int var j int var count_j int var text *string = new(string) var strVal *string = new(string) metadataItems := jResp.IntOf("metadata.items") metadataOffset := jResp.IntOf("metadata.offset") totalResults := jResp.IntOf("totalResults") i := 0 count_i := jResp.SizeOfArray("products") for i < count_i { jResp.SetI(i) id = jResp.StringOf("products[i].id") name = jResp.StringOf("products[i].name") slug = jResp.StringOf("products[i].slug") visible = jResp.BoolOf("products[i].visible") productType = jResp.StringOf("products[i].productType") description = jResp.StringOf("products[i].description") stockTrackInventory = jResp.BoolOf("products[i].stock.trackInventory") stockQuantity = jResp.IntOf("products[i].stock.quantity") stockInStock = jResp.BoolOf("products[i].stock.inStock") priceCurrency = jResp.StringOf("products[i].price.currency") pricePrice = jResp.IntOf("products[i].price.price") priceDiscountedPrice = jResp.IntOf("products[i].price.discountedPrice") priceFormattedPrice = jResp.StringOf("products[i].price.formatted.price") priceFormattedDiscountedPrice = jResp.StringOf("products[i].price.formatted.discountedPrice") priceDataCurrency = jResp.StringOf("products[i].priceData.currency") priceDataPrice = jResp.IntOf("products[i].priceData.price") priceDataDiscountedPrice = jResp.IntOf("products[i].priceData.discountedPrice") priceDataFormattedPrice = jResp.StringOf("products[i].priceData.formatted.price") priceDataFormattedDiscountedPrice = jResp.StringOf("products[i].priceData.formatted.discountedPrice") manageVariants = jResp.BoolOf("products[i].manageVariants") productPageUrlBase = jResp.StringOf("products[i].productPageUrl.base") productPageUrlPath = jResp.StringOf("products[i].productPageUrl.path") numericId = jResp.StringOf("products[i].numericId") inventoryItemId = jResp.StringOf("products[i].inventoryItemId") discountType = jResp.StringOf("products[i].discount.type") discountValue = jResp.IntOf("products[i].discount.value") sku = jResp.StringOf("products[i].sku") weight = jResp.IntOf("products[i].weight") j = 0 count_j = jResp.SizeOfArray("products[i].additionalInfoSections") for j < count_j { jResp.SetJ(j) j = j + 1 } j = 0 count_j = jResp.SizeOfArray("products[i].ribbons") for j < count_j { jResp.SetJ(j) text = jResp.StringOf("products[i].ribbons[j].text") j = j + 1 } j = 0 count_j = jResp.SizeOfArray("products[i].media.items") for j < count_j { jResp.SetJ(j) j = j + 1 } j = 0 count_j = jResp.SizeOfArray("products[i].customTextFields") for j < count_j { jResp.SetJ(j) j = j + 1 } j = 0 count_j = jResp.SizeOfArray("products[i].productOptions") for j < count_j { jResp.SetJ(j) j = j + 1 } j = 0 count_j = jResp.SizeOfArray("products[i].collectionIds") for j < count_j { jResp.SetJ(j) strVal = jResp.StringOf("products[i].collectionIds[j]") j = j + 1 } j = 0 count_j = jResp.SizeOfArray("products[i].variants") for j < count_j { jResp.SetJ(j) j = j + 1 } i = i + 1 } http.DisposeHttp() json.DisposeJsonObject() sbResponseBody.DisposeStringBuilder() jResp.DisposeJsonObject() |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.