Sample code for 30+ languages & platforms
CkPython

Shopify Basic Authentication: Get List of Products

See more Shopify Examples

Demonstrates how to send a simple HTTP GET request with Basic authentication to get a list of products.

Chilkat CkPython Downloads

CkPython
import sys
import chilkat

# This example requires the Chilkat API to have been previously unlocked.
# See Global Unlock Sample for sample code.

http = chilkat.CkHttp()

# Use your Shopify store's Admin API key and password.
http.put_Login("admin3_api_key")
http.put_Password("admin3_password")
http.put_BasicAuth(True)

jsonStr = http.quickGetStr("https://mystore.myshopify.com/admin/api/2020-07/products.json")
if (http.get_LastMethodSuccess() != True):
    print(http.lastErrorText())
    sys.exit()

print("Response status code: " + str(http.get_LastStatus()))
print("JSON response:")
print(jsonStr)