(PHP Extension) Shopify Basic Authentication: Get List of Products
Demonstrates how to send a simple HTTP GET request with Basic authentication to get a list of products.
<?php
// The version number (9_5_0) should match version of the Chilkat extension used, omitting the micro-version number.
// For example, if using Chilkat v9.5.0.48, then include as shown here:
include("chilkat_9_5_0.php");
// This example requires the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
$http = new CkHttp();
// Use your Shopify store's Admin API key and password.
$http->put_Login('admin_api_key');
$http->put_Password('admin_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() . "\n";
exit;
}
print 'Response status code: ' . $http->get_LastStatus() . "\n";
print 'JSON response:' . "\n";
print $jsonStr . "\n";
?>
|