Sample code for 30+ languages & platforms
Chilkat2-Python

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 Chilkat2-Python Downloads

Chilkat2-Python
import sys
import chilkat2

success = False

# 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 = chilkat2.Http()

# 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.
http.Login = "SHOPIFY_PRIVATE_API_KEY"
http.Password = "SHOPIFY_PRIVATE_API_SECRET_KEY"
http.BasicAuth = True

# Make sure to replace "chilkat" with your store name.
resp = chilkat2.HttpResponse()
success = http.HttpNoBody("GET","https://chilkat.myshopify.com/admin/products.json",resp)
if (success == False):
    print(http.LastErrorText)
    sys.exit()

# Examine the response code.
if (resp.StatusCode != 200):
    print("Received error response code: " + str(resp.StatusCode))
    print("Response body:")
    print(resp.BodyStr)
    sys.exit()

# Success.
print("Success.")

# Examine the JSON response 
sbJson = chilkat2.StringBuilder()
resp.GetBodySb(sbJson)
json = chilkat2.JsonObject()
json.LoadSb(sbJson)
json.EmitCompact = False
print(json.Emit())

# -------------------------------------------------
# Now let's do the same using the Chilkat Rest API.
rest = chilkat2.Rest()

# Provide the private app credentials:
rest.SetAuthBasic("SHOPIFY_PRIVATE_API_KEY","SHOPIFY_PRIVATE_API_SECRET_KEY")

# Connect to the shopify server.
bTls = True
port = 443
bAutoReconnect = True
# Make sure to replace "chilkat" with your store name.
success = rest.Connect("chilkat.myshopify.com",port,bTls,bAutoReconnect)
if (success == False):
    print(rest.LastErrorText)
    sys.exit()

sbJson.Clear()
success = rest.FullRequestNoBodySb("GET","/admin/products.json",sbJson)
if (rest.LastMethodSuccess == False):
    print(rest.LastErrorText)
    sys.exit()

if (rest.ResponseStatusCode != 200):
    print("Received error response code: " + str(rest.ResponseStatusCode))
    print("Response body:")
    print(sbJson.GetAsString())
    sys.exit()

# Success...
json.LoadSb(sbJson)
print(json.Emit())