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
(PureBasic) 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.
IncludeFile "CkHttpResponse.pb" IncludeFile "CkHttp.pb" IncludeFile "CkStringBuilder.pb" IncludeFile "CkJsonObject.pb" IncludeFile "CkRest.pb" Procedure ChilkatExample() ; 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. http.i = CkHttp::ckCreate() If http.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; 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::setCkLogin(http, "SHOPIFY_PRIVATE_API_KEY") CkHttp::setCkPassword(http, "SHOPIFY_PRIVATE_API_SECRET_KEY") CkHttp::setCkBasicAuth(http, 1) ; Make sure to replace "chilkat" with your store name. resp.i = CkHttp::ckQuickGetObj(http,"https://chilkat.myshopify.com/admin/products.json") If CkHttp::ckLastMethodSuccess(http) <> 1 Debug CkHttp::ckLastErrorText(http) CkHttp::ckDispose(http) ProcedureReturn EndIf ; Examine the response code. If CkHttpResponse::ckStatusCode(resp) <> 200 Debug "Received error response code: " + Str(CkHttpResponse::ckStatusCode(resp)) Debug "Response body:" Debug CkHttpResponse::ckBodyStr(resp) CkHttpResponse::ckDispose(resp) CkHttp::ckDispose(http) ProcedureReturn EndIf ; Success. Debug "Success." ; Examine the JSON response sbJson.i = CkStringBuilder::ckCreate() If sbJson.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkHttpResponse::ckGetBodySb(resp,sbJson) CkHttpResponse::ckDispose(resp) json.i = CkJsonObject::ckCreate() If json.i = 0 Debug "Failed to create object." ProcedureReturn EndIf CkJsonObject::ckLoadSb(json,sbJson) CkJsonObject::setCkEmitCompact(json, 0) Debug CkJsonObject::ckEmit(json) ; ------------------------------------------------- ; Now let's do the same using the Chilkat Rest API. rest.i = CkRest::ckCreate() If rest.i = 0 Debug "Failed to create object." ProcedureReturn EndIf ; Provide the private app credentials: CkRest::ckSetAuthBasic(rest,"SHOPIFY_PRIVATE_API_KEY","SHOPIFY_PRIVATE_API_SECRET_KEY") ; Connect to the shopify server. bTls.i = 1 port.i = 443 bAutoReconnect.i = 1 ; Make sure to replace "chilkat" with your store name. success.i = CkRest::ckConnect(rest,"chilkat.myshopify.com",port,bTls,bAutoReconnect) If success <> 1 Debug CkRest::ckLastErrorText(rest) CkHttp::ckDispose(http) CkStringBuilder::ckDispose(sbJson) CkJsonObject::ckDispose(json) CkRest::ckDispose(rest) ProcedureReturn EndIf CkStringBuilder::ckClear(sbJson) success = CkRest::ckFullRequestNoBodySb(rest,"GET","/admin/products.json",sbJson) If CkRest::ckLastMethodSuccess(rest) <> 1 Debug CkRest::ckLastErrorText(rest) CkHttp::ckDispose(http) CkStringBuilder::ckDispose(sbJson) CkJsonObject::ckDispose(json) CkRest::ckDispose(rest) ProcedureReturn EndIf If CkRest::ckResponseStatusCode(rest) <> 200 Debug "Received error response code: " + Str(CkRest::ckResponseStatusCode(rest)) Debug "Response body:" Debug CkStringBuilder::ckGetAsString(sbJson) CkHttp::ckDispose(http) CkStringBuilder::ckDispose(sbJson) CkJsonObject::ckDispose(json) CkRest::ckDispose(rest) ProcedureReturn EndIf ; Success... CkJsonObject::ckLoadSb(json,sbJson) Debug CkJsonObject::ckEmit(json) CkHttp::ckDispose(http) CkStringBuilder::ckDispose(sbJson) CkJsonObject::ckDispose(json) CkRest::ckDispose(rest) ProcedureReturn EndProcedure |
© 2000-2024 Chilkat Software, Inc. All Rights Reserved.