Sample code for 30+ languages & platforms
Lianja

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 Lianja Downloads

Lianja
llSuccess = .F.

// 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.
loHttp = createobject("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.
loHttp.Login = "SHOPIFY_PRIVATE_API_KEY"
loHttp.Password = "SHOPIFY_PRIVATE_API_SECRET_KEY"
loHttp.BasicAuth = .T.

// Make sure to replace "chilkat" with your store name.
loResp = createobject("CkHttpResponse")
llSuccess = loHttp.HttpNoBody("GET","https://chilkat.myshopify.com/admin/products.json",loResp)
if (llSuccess = .F.) then
    ? loHttp.LastErrorText
    release loHttp
    release loResp
    return
endif

// Examine the response code.
if (loResp.StatusCode <> 200) then
    ? "Received error response code: " + str(loResp.StatusCode)
    ? "Response body:"
    ? loResp.BodyStr
    release loHttp
    release loResp
    return
endif

// Success.
? "Success."

// Examine the JSON response 
loSbJson = createobject("CkStringBuilder")
loResp.GetBodySb(loSbJson)
loJson = createobject("CkJsonObject")
loJson.LoadSb(loSbJson)
loJson.EmitCompact = .F.
? loJson.Emit()

// -------------------------------------------------
// Now let's do the same using the Chilkat Rest API.
loRest = createobject("CkRest")

// Provide the private app credentials:
loRest.SetAuthBasic("SHOPIFY_PRIVATE_API_KEY","SHOPIFY_PRIVATE_API_SECRET_KEY")

// Connect to the shopify server.
llBTls = .T.
lnPort = 443
llBAutoReconnect = .T.
// Make sure to replace "chilkat" with your store name.
llSuccess = loRest.Connect("chilkat.myshopify.com",lnPort,llBTls,llBAutoReconnect)
if (llSuccess = .F.) then
    ? loRest.LastErrorText
    release loHttp
    release loResp
    release loSbJson
    release loJson
    release loRest
    return
endif

loSbJson.Clear()
llSuccess = loRest.FullRequestNoBodySb("GET","/admin/products.json",loSbJson)
if (loRest.LastMethodSuccess = .F.) then
    ? loRest.LastErrorText
    release loHttp
    release loResp
    release loSbJson
    release loJson
    release loRest
    return
endif

if (loRest.ResponseStatusCode <> 200) then
    ? "Received error response code: " + str(loRest.ResponseStatusCode)
    ? "Response body:"
    ? loSbJson.GetAsString()
    release loHttp
    release loResp
    release loSbJson
    release loJson
    release loRest
    return
endif

// Success...
loJson.LoadSb(loSbJson)
? loJson.Emit()


release loHttp
release loResp
release loSbJson
release loJson
release loRest