danrichards / shopify by dan

Shopify API with Laravel integrations using latest Guzzle.
20,041
22
6
Package Data
Maintainer Username: dan
Maintainer Contact: danrichardsri@gmail.com (Dan Richards)
Package Create Date: 2017-07-19
Package Last Update: 2023-03-25
Home Page:
Language: PHP
License: MIT
Last Refreshed: 2024-04-26 03:09:33
Package Statistics
Total Downloads: 20,041
Monthly Downloads: 936
Daily Downloads: 30
Total Stars: 22
Total Watchers: 6
Total Forks: 8
Total Open Issues: 0

Shopify API

An object-oriented approach towards using the Shopify API. This repos is a work-in-progress and not production ready.

Please note: the old version (v0.9) using Guzzle 3.9 is maintained here

Supported Objects / Endpoints:

Composer

$ composer require dan/shopify-api v1.*

Usage without Laravel

// Assumes setup of client with access token.
$api = Dan\Shopify\Shopify::make($shop, $token);
$api->orders->find($order_id = 123);              // returns Dan\Shopify/Models/Order

// Alternatively, we may call methods on the API object.
$api->orders->get([], $order_id = 123);           // returns array

See Facade usages for other methods available.

Usage with Laravel

Single Store App

In your config/app.php

Add the following to your providers array:

Dan\Shopify\Integrations\Laravel\ShopifyServiceProvider::class,

Add the following to your aliases array:

'Shopify' => Dan\Shopify\Integrations\Laravel\ShopifyFacade::class,

Replace following variables in your .env

SHOPIFY_DOMAIN=your-shop-name.myshopify.com
SHOPIFY_TOKEN=your-token-here

Using the Facade gives you Dan\Shopify\Shopify

It will be instantiated with your shop and token you setup in config/shopify.php


Examples of saving data.

Creating a product using a model

Updating a product using a model

Add a product to a collection

or


Embedded Apps

Get a token for a redirect response.

Shopify::getAppInstallResponse(
    'your_app_client_id', 
    'your_app_client_secret',
    'shop_from_request',
    'code_from_request'
);

// returns (object) ['access_token' => '...', 'scopes' => '...']

Verify App Hmac (works for callback or redirect)

Dan\Shopify\Util::validAppHmac(
    'hmac_from_request', 
    'your_app_client_secret', 
    ['shop' => '...', 'timestamp' => '...', ...]
);

Verify App Webhook Hmac

Dan\Shopify\Util::validWebhookHmac(
    'hmac_from_request', 
    'your_app_client_secret', 
    file_get_contents('php://input')
);

Contributors

Todo

  • Artisan Command to create token

License

MIT.