By ShopifyExtras.com - 24/7 Shopify Support - Bugs Resolved Same Day
The recommended way to install the wrapper is through Composer.
# Install Composer
curl -sS https://getcomposer.org/installer | php
Next, run the Composer command to install the latest stable version of the wrapper:
composer require shopifyextras/shopify-php-api-wrapper
After installing, you need to require Composer's autoloader:
require 'vendor/autoload.php';
First you will need to initialise the client like this:
$client = Shopify::settings(array(
"shopUrl" => $shopUrl,
"X-Shopify-Access-Token" => $accessToken
));
Then you can begin making requests:
// Get a list of all products.
$client->getProducts();
// Get a list of all orders.
$client->getOrders();
// Get a specific product.
$client->getProduct(array("id" => $product_id));
If you spot any bugs, please report it using the issue tracker. If you would like to contribute to the project please feel free to make your amends and submit a pull request.
Unfortunately we are unable to provide free technical support for the wrapper. If you require this kind of help then please contact us by emailing help@shopifyextras.com.