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
(Tcl) Shopify Private Authentication for Private AppsShopify private authentication is for interacting with your own store through private applications. It uses HTTP "Basic" authentication with your Shopify private application key and secret key. This example demonstrates how to send a private authenticated request using Chilkat Http, and then the same using Chilkat Rest.
load ./chilkat.dll # This example requires the Chilkat API to have been previously unlocked. # See Global Unlock Sample for sample code. # First demonstrate sending a simple request using Shopify private authentication w/ the Chilkat Http API. set http [new_CkHttp] # To use HTTP Basic Authentication with any HTTP request, we simply set the Login, Password, and BasicAuth properties. # Important: All HTTP requests using Basic authentication must be over SSL/TLS. CkHttp_put_Login $http "SHOPIFY_PRIVATE_API_KEY" CkHttp_put_Password $http "SHOPIFY_PRIVATE_API_SECRET_KEY" CkHttp_put_BasicAuth $http 1 # Make sure to replace "chilkat" with your store name. # resp is a CkHttpResponse set resp [CkHttp_QuickGetObj $http "https://chilkat.myshopify.com/admin/products.json"] if {[CkHttp_get_LastMethodSuccess $http] != 1} then { puts [CkHttp_lastErrorText $http] delete_CkHttp $http exit } # Examine the response code. if {[CkHttpResponse_get_StatusCode $resp] != 200} then { puts "Received error response code: [CkHttpResponse_get_StatusCode $resp]" puts "Response body:" puts [CkHttpResponse_bodyStr $resp] delete_CkHttpResponse $resp delete_CkHttp $http exit } # Success. puts "Success." # Examine the JSON response set sbJson [new_CkStringBuilder] CkHttpResponse_GetBodySb $resp $sbJson delete_CkHttpResponse $resp set json [new_CkJsonObject] CkJsonObject_LoadSb $json $sbJson CkJsonObject_put_EmitCompact $json 0 puts [CkJsonObject_emit $json] # ------------------------------------------------- # Now let's do the same using the Chilkat Rest API. set rest [new_CkRest] # Provide the private app credentials: CkRest_SetAuthBasic $rest "SHOPIFY_PRIVATE_API_KEY" "SHOPIFY_PRIVATE_API_SECRET_KEY" # Connect to the shopify server. set bTls 1 set port 443 set bAutoReconnect 1 # Make sure to replace "chilkat" with your store name. set success [CkRest_Connect $rest "chilkat.myshopify.com" $port $bTls $bAutoReconnect] if {$success != 1} then { puts [CkRest_lastErrorText $rest] delete_CkHttp $http delete_CkStringBuilder $sbJson delete_CkJsonObject $json delete_CkRest $rest exit } CkStringBuilder_Clear $sbJson set success [CkRest_FullRequestNoBodySb $rest "GET" "/admin/products.json" $sbJson] if {[CkRest_get_LastMethodSuccess $rest] != 1} then { puts [CkRest_lastErrorText $rest] delete_CkHttp $http delete_CkStringBuilder $sbJson delete_CkJsonObject $json delete_CkRest $rest exit } if {[CkRest_get_ResponseStatusCode $rest] != 200} then { puts "Received error response code: [CkRest_get_ResponseStatusCode $rest]" puts "Response body:" puts [CkStringBuilder_getAsString $sbJson] delete_CkHttp $http delete_CkStringBuilder $sbJson delete_CkJsonObject $json delete_CkRest $rest exit } # Success... CkJsonObject_LoadSb $json $sbJson puts [CkJsonObject_emit $json] delete_CkHttp $http delete_CkStringBuilder $sbJson delete_CkJsonObject $json delete_CkRest $rest |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.