(Tcl) WooCommerce List Products having SKU
Gets information for a product by SKU.For more information, see https://woocommerce.github.io/woocommerce-rest-api-docs/#list-all-products
load ./chilkat.dll
# This example assumes the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.
set http [new_CkHttp]
# Implements the following CURL command:
# curl https://example.com/wp-json/wc/v3/products?sku=3386460107914 \
# -u consumer_key:consumer_secret
# Use the following online tool to generate HTTP code from a CURL command
# Convert a cURL Command to HTTP Source Code
CkHttp_put_BasicAuth $http 1
CkHttp_put_Login $http "consumer_key"
CkHttp_put_Password $http "consumer_secret"
set sbResponseBody [new_CkStringBuilder]
CkHttp_SetUrlVar $http "sku" "3386460107914"
# Use "https" or "http" depending on what your site needs.
set success [CkHttp_QuickGetSb $http "http://example.com/wp-json/wc/v3/products?sku={$sku}" $sbResponseBody]
if {$success == 0} then {
puts [CkHttp_lastErrorText $http]
delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody
exit
}
set jarrResp [new_CkJsonArray]
CkJsonArray_LoadSb $jarrResp $sbResponseBody
CkJsonArray_put_EmitCompact $jarrResp 0
puts "Response Body:"
puts [CkJsonArray_emit $jarrResp]
set respStatusCode [CkHttp_get_LastStatus $http]
puts "Response Status Code = $respStatusCode"
if {$respStatusCode >= 400} then {
puts "Response Header:"
puts [CkHttp_lastHeader $http]
puts "Failed."
delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody
delete_CkJsonArray $jarrResp
exit
}
delete_CkHttp $http
delete_CkStringBuilder $sbResponseBody
delete_CkJsonArray $jarrResp
|