PHP code example of elabuwa / shopifyapi
1. Go to this page and download the library: Download elabuwa/shopifyapi library. Choose the download type require. 2. Extract the ZIP file and open the index.php. 3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
elabuwa / shopifyapi example snippets
$credentials = [
'userName' => env('SHOPIFY_USERNAME', ''),
'password' => env('SHOPIFY_PASSWORD', ''),
'apiVersion' => env('SHOPIFY_API_VERSION', ''),
'storeShopifyUrl' => env('SHOPIFY_URL', '')
];
$customerObj = new shopifyCustomers($credentials);
$response = $customerObj->customerInfo('customerID');
var_dump($response['customer']);