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
(Swift 2) WooCommerce Update a ProductSee more WooCommerce ExamplesDemonstrates how to make changes to a product in WooCommerce. For more information, see https://woocommerce.github.io/woocommerce-rest-api-docs/#update-a-product
func chilkatTest() { // This example assumes the Chilkat API to have been previously unlocked. // See Global Unlock Sample for sample code. let http = CkoHttp() var success: Bool // Implements the following CURL command: // curl -X PUT https://example.com/wp-json/wc/v3/products/794 \ // -u consumer_key:consumer_secret \ // -H "Content-Type: application/json" \ // -d '{ // "regular_price": "24.54" // }' // Use the following online tool to generate HTTP code from a CURL command // Convert a cURL Command to HTTP Source Code http.BasicAuth = true http.Login = "consumer_key" http.Password = "consumer_secret" // Use this online tool to generate code from sample JSON: // Generate Code to Create JSON // The following JSON is sent in the request body. // { // "regular_price": "24.54" // } let json = CkoJsonObject() json.UpdateString("regular_price", value: "24.54") http.SetRequestHeader("Content-Type", value: "application/json") let sbRequestBody = CkoStringBuilder() json.EmitSb(sbRequestBody) var resp: CkoHttpResponse? = http.PTextSb("PUT", url: "https://example.com/wp-json/wc/v3/products/794", textData: sbRequestBody, charset: "utf-8", contentType: "application/json", md5: false, gzip: false) if http.LastMethodSuccess == false { print("\(http.LastErrorText)") return } let sbResponseBody = CkoStringBuilder() resp!.GetBodySb(sbResponseBody) let jResp = CkoJsonObject() jResp.LoadSb(sbResponseBody) jResp.EmitCompact = false print("Response Body:") print("\(jResp.Emit())") var respStatusCode: Int = resp!.StatusCode.intValue print("Response Status Code = \(respStatusCode)") if respStatusCode >= 400 { print("Response Header:") print("\(resp!.Header)") print("Failed.") resp = nil return } resp = nil // Sample JSON response: // (Sample code for parsing the JSON response is shown below) // { // "id": 794, // "name": "Premium Quality", // "slug": "premium-quality-19", // "permalink": "https://example.com/product/premium-quality-19/", // "date_created": "2017-03-23T17:01:14", // "date_created_gmt": "2017-03-23T20:01:14", // "date_modified": "2017-03-23T17:01:14", // "date_modified_gmt": "2017-03-23T20:01:14", // "type": "simple", // "status": "publish", // "featured": false, // "catalog_visibility": "visible", // "description": "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas. Vestibulum tortor quam, feugiat vitae, ultricies eget, tempor sit amet, ante. Donec eu libero sit amet quam egestas semper. Aenean ultricies mi vitae est. Mauris placerat eleifend leo.</p>\n", // "short_description": "<p>Pellentesque habitant morbi tristique senectus et netus et malesuada fames ac turpis egestas.</p>\n", // "sku": "", // "price": "24.54", // "regular_price": "24.54", // "sale_price": "", // "date_on_sale_from": null, // "date_on_sale_from_gmt": null, // "date_on_sale_to": null, // "date_on_sale_to_gmt": null, // "price_html": "<span class=\"woocommerce-Price-amount amount\"><span class=\"woocommerce-Price-currencySymbol\">$</span>24.54</span>", // "on_sale": false, // "purchasable": true, // "total_sales": 0, // "virtual": false, // "downloadable": false, // "downloads": [ // ], // "download_limit": -1, // "download_expiry": -1, // "external_url": "", // "button_text": "", // "tax_status": "taxable", // "tax_class": "", // "manage_stock": false, // "stock_quantity": null, // "stock_status": "instock", // "backorders": "no", // "backorders_allowed": false, // "backordered": false, // "sold_individually": false, // "weight": "", // "dimensions": { // "length": "", // "width": "", // "height": "" // }, // "shipping_required": true, // "shipping_taxable": true, // "shipping_class": "", // "shipping_class_id": 0, // "reviews_allowed": true, // "average_rating": "0.00", // "rating_count": 0, // "related_ids": [ // 479, // 387, // 22, // 463, // 396 // ], // "upsell_ids": [ // ], // "cross_sell_ids": [ // ], // "parent_id": 0, // "purchase_note": "", // "categories": [ // { // "id": 9, // "name": "Clothing", // "slug": "clothing" // }, // { // "id": 14, // "name": "T-shirts", // "slug": "t-shirts" // } // ], // "tags": [ // ], // "images": [ // { // "id": 792, // "date_created": "2017-03-23T14:01:13", // "date_created_gmt": "2017-03-23T20:01:13", // "date_modified": "2017-03-23T14:01:13", // "date_modified_gmt": "2017-03-23T20:01:13", // "src": "https://example.com/wp-content/uploads/2017/03/T_2_front-4.jpg", // "name": "", // "alt": "" // }, // { // "id": 793, // "date_created": "2017-03-23T14:01:14", // "date_created_gmt": "2017-03-23T20:01:14", // "date_modified": "2017-03-23T14:01:14", // "date_modified_gmt": "2017-03-23T20:01:14", // "src": "https://example.com/wp-content/uploads/2017/03/T_2_back-2.jpg", // "name": "", // "alt": "" // } // ], // "attributes": [ // ], // "default_attributes": [ // ], // "variations": [ // ], // "grouped_products": [ // ], // "menu_order": 0, // "meta_data": [ // ], // "_links": { // "self": [ // { // "href": "https://example.com/wp-json/wc/v3/products/794" // } // ], // "collection": [ // { // "href": "https://example.com/wp-json/wc/v3/products" // } // ] // } // } // Sample code for parsing the JSON response... // Use the following online tool to generate parsing code from sample JSON: // Generate Parsing Code from JSON let date_created = CkoDtObj() let date_created_gmt = CkoDtObj() let date_modified = CkoDtObj() let date_modified_gmt = CkoDtObj() let date_on_sale_from = CkoDtObj() let date_on_sale_from_gmt = CkoDtObj() let date_on_sale_to = CkoDtObj() let date_on_sale_to_gmt = CkoDtObj() var intVal: Int var src: String? var alt: String? var href: String? var id: Int = jResp.IntOf("id").intValue var name: String? = jResp.StringOf("name") var slug: String? = jResp.StringOf("slug") var permalink: String? = jResp.StringOf("permalink") jResp.DtOf("date_created", bLocal: false, dt: date_created) jResp.DtOf("date_created_gmt", bLocal: false, dt: date_created_gmt) jResp.DtOf("date_modified", bLocal: false, dt: date_modified) jResp.DtOf("date_modified_gmt", bLocal: false, dt: date_modified_gmt) var v_type: String? = jResp.StringOf("type") var status: String? = jResp.StringOf("status") var featured: Bool = jResp.BoolOf("featured") var catalog_visibility: String? = jResp.StringOf("catalog_visibility") var description: String? = jResp.StringOf("description") var short_description: String? = jResp.StringOf("short_description") var sku: String? = jResp.StringOf("sku") var price: String? = jResp.StringOf("price") var regular_price: String? = jResp.StringOf("regular_price") var sale_price: String? = jResp.StringOf("sale_price") jResp.DtOf("date_on_sale_from", bLocal: false, dt: date_on_sale_from) jResp.DtOf("date_on_sale_from_gmt", bLocal: false, dt: date_on_sale_from_gmt) jResp.DtOf("date_on_sale_to", bLocal: false, dt: date_on_sale_to) jResp.DtOf("date_on_sale_to_gmt", bLocal: false, dt: date_on_sale_to_gmt) var price_html: String? = jResp.StringOf("price_html") var on_sale: Bool = jResp.BoolOf("on_sale") var purchasable: Bool = jResp.BoolOf("purchasable") var total_sales: Int = jResp.IntOf("total_sales").intValue var virtual: Bool = jResp.BoolOf("virtual") var downloadable: Bool = jResp.BoolOf("downloadable") var download_limit: Int = jResp.IntOf("download_limit").intValue var download_expiry: Int = jResp.IntOf("download_expiry").intValue var external_url: String? = jResp.StringOf("external_url") var button_text: String? = jResp.StringOf("button_text") var tax_status: String? = jResp.StringOf("tax_status") var tax_class: String? = jResp.StringOf("tax_class") var manage_stock: Bool = jResp.BoolOf("manage_stock") var stock_quantity: String? = jResp.StringOf("stock_quantity") var stock_status: String? = jResp.StringOf("stock_status") var backorders: String? = jResp.StringOf("backorders") var backorders_allowed: Bool = jResp.BoolOf("backorders_allowed") var backordered: Bool = jResp.BoolOf("backordered") var sold_individually: Bool = jResp.BoolOf("sold_individually") var weight: String? = jResp.StringOf("weight") var dimensionsLength: String? = jResp.StringOf("dimensions.length") var dimensionsWidth: String? = jResp.StringOf("dimensions.width") var dimensionsHeight: String? = jResp.StringOf("dimensions.height") var shipping_required: Bool = jResp.BoolOf("shipping_required") var shipping_taxable: Bool = jResp.BoolOf("shipping_taxable") var shipping_class: String? = jResp.StringOf("shipping_class") var shipping_class_id: Int = jResp.IntOf("shipping_class_id").intValue var reviews_allowed: Bool = jResp.BoolOf("reviews_allowed") var average_rating: String? = jResp.StringOf("average_rating") var rating_count: Int = jResp.IntOf("rating_count").intValue var parent_id: Int = jResp.IntOf("parent_id").intValue var purchase_note: String? = jResp.StringOf("purchase_note") var menu_order: Int = jResp.IntOf("menu_order").intValue var i: Int = 0 var count_i: Int = jResp.SizeOfArray("downloads").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("related_ids").intValue while i < count_i { jResp.I = i intVal = jResp.IntOf("related_ids[i]").intValue i = i + 1 } i = 0 count_i = jResp.SizeOfArray("upsell_ids").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("cross_sell_ids").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("categories").intValue while i < count_i { jResp.I = i id = jResp.IntOf("categories[i].id").intValue name = jResp.StringOf("categories[i].name") slug = jResp.StringOf("categories[i].slug") i = i + 1 } i = 0 count_i = jResp.SizeOfArray("tags").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("images").intValue while i < count_i { jResp.I = i id = jResp.IntOf("images[i].id").intValue jResp.DtOf("images[i].date_created", bLocal: false, dt: date_created) jResp.DtOf("images[i].date_created_gmt", bLocal: false, dt: date_created_gmt) jResp.DtOf("images[i].date_modified", bLocal: false, dt: date_modified) jResp.DtOf("images[i].date_modified_gmt", bLocal: false, dt: date_modified_gmt) src = jResp.StringOf("images[i].src") name = jResp.StringOf("images[i].name") alt = jResp.StringOf("images[i].alt") i = i + 1 } i = 0 count_i = jResp.SizeOfArray("attributes").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("default_attributes").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("variations").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("grouped_products").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("meta_data").intValue while i < count_i { jResp.I = i i = i + 1 } i = 0 count_i = jResp.SizeOfArray("_links.self").intValue while i < count_i { jResp.I = i href = jResp.StringOf("_links.self[i].href") i = i + 1 } i = 0 count_i = jResp.SizeOfArray("_links.collection").intValue while i < count_i { jResp.I = i href = jResp.StringOf("_links.collection[i].href") i = i + 1 } } |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.