Sample code for 30+ languages & platforms
Visual FoxPro

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 Visual FoxPro Downloads

Visual FoxPro
LOCAL lnSuccess
LOCAL loHttp
LOCAL loResp
LOCAL loSbJson
LOCAL loJson
LOCAL loRest
LOCAL lnBTls
LOCAL lnPort
LOCAL lnBAutoReconnect

lnSuccess = 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.
loHttp = CreateObject('Chilkat.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.
loHttp.Login = "SHOPIFY_PRIVATE_API_KEY"
loHttp.Password = "SHOPIFY_PRIVATE_API_SECRET_KEY"
loHttp.BasicAuth = 1

* Make sure to replace "chilkat" with your store name.
loResp = CreateObject('Chilkat.HttpResponse')
lnSuccess = loHttp.HttpNoBody("GET","https://chilkat.myshopify.com/admin/products.json",loResp)
IF (lnSuccess = 0) THEN
    ? loHttp.LastErrorText
    RELEASE loHttp
    RELEASE loResp
    CANCEL
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
    CANCEL
ENDIF

* Success.
? "Success."

* Examine the JSON response 
loSbJson = CreateObject('Chilkat.StringBuilder')
loResp.GetBodySb(loSbJson)
loJson = CreateObject('Chilkat.JsonObject')
loJson.LoadSb(loSbJson)
loJson.EmitCompact = 0
? loJson.Emit()

* -------------------------------------------------
* Now let's do the same using the Chilkat Rest API.
loRest = CreateObject('Chilkat.Rest')

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

* Connect to the shopify server.
lnBTls = 1
lnPort = 443
lnBAutoReconnect = 1
* Make sure to replace "chilkat" with your store name.
lnSuccess = loRest.Connect("chilkat.myshopify.com",lnPort,lnBTls,lnBAutoReconnect)
IF (lnSuccess = 0) THEN
    ? loRest.LastErrorText
    RELEASE loHttp
    RELEASE loResp
    RELEASE loSbJson
    RELEASE loJson
    RELEASE loRest
    CANCEL
ENDIF

loSbJson.Clear()
lnSuccess = loRest.FullRequestNoBodySb("GET","/admin/products.json",loSbJson)
IF (loRest.LastMethodSuccess = 0) THEN
    ? loRest.LastErrorText
    RELEASE loHttp
    RELEASE loResp
    RELEASE loSbJson
    RELEASE loJson
    RELEASE loRest
    CANCEL
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
    CANCEL
ENDIF

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

RELEASE loHttp
RELEASE loResp
RELEASE loSbJson
RELEASE loJson
RELEASE loRest