Sample code for 30+ languages & platforms
Tcl

Shopify Private Authentication for Private Apps

See more Shopify Examples

Shopify 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.

Chilkat Tcl Downloads

Tcl

load ./chilkat.dll

set success 0

# 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.
set resp [new_CkHttpResponse]

set success [CkHttp_HttpNoBody $http "GET" "https://chilkat.myshopify.com/admin/products.json" $resp]
if {$success == 0} then {
    puts [CkHttp_lastErrorText $http]
    delete_CkHttp $http
    delete_CkHttpResponse $resp
    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_CkHttp $http
    delete_CkHttpResponse $resp
    exit
}

# Success.
puts "Success."

# Examine the JSON response 
set sbJson [new_CkStringBuilder]

CkHttpResponse_GetBodySb $resp $sbJson
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 == 0} then {
    puts [CkRest_lastErrorText $rest]
    delete_CkHttp $http
    delete_CkHttpResponse $resp
    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] == 0} then {
    puts [CkRest_lastErrorText $rest]
    delete_CkHttp $http
    delete_CkHttpResponse $resp
    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_CkHttpResponse $resp
    delete_CkStringBuilder $sbJson
    delete_CkJsonObject $json
    delete_CkRest $rest
    exit
}

# Success...
CkJsonObject_LoadSb $json $sbJson
puts [CkJsonObject_emit $json]

delete_CkHttp $http
delete_CkHttpResponse $resp
delete_CkStringBuilder $sbJson
delete_CkJsonObject $json
delete_CkRest $rest