roemerb/php-shopify

PHP SDK for Shopify API

v1.0.3 2018-07-05 14:33 UTC

This package is auto-updated.

Last update: 2024-04-16 19:34:33 UTC


README

Build Status Total Downloads Latest Stable Version Latest Unstable Version License

PHPShopify is a simple SDK implementation of Shopify API. It helps accessing the API in an object oriented way.

Installation

Install with Composer

composer require phpclassic/php-shopify

Requirements

PHPShopify uses curl extension for handling http calls. So you need to have the curl extension installed and enabled with PHP.

However if you prefer to use any other available package library for handling HTTP calls, you can easily do so by modifying 1 line in each of the get(), post(), put(), delete() methods in PHPShopify\HttpRequestJson class.

Usage

You can use PHPShopify in a pretty simple object oriented way.

Configure ShopifySDK

If you are using your own private API, provide the ApiKey and Password.

$config = array(
    'ShopUrl' => 'yourshop.myshopify.com',
    'ApiKey' => '***YOUR-PRIVATE-API-KEY***',
    'Password' => '***YOUR-PRIVATE-API-PASSWORD***',
);

PHPShopify\ShopifySDK::config($config);

For Third party apps, use the permanent access token.

$config = array(
    'ShopUrl' => 'yourshop.myshopify.com',
    'AccessToken' => '***ACCESS-TOKEN-FOR-THIRD-PARTY-APP***',
);

PHPShopify\ShopifySDK::config($config);
How to get the permanent access token for a shop?

There is a AuthHelper class to help you getting the permanent access token from the shop using oAuth.

  1. First, you need to configure the SDK with additional parameter SharedSecret
$config = array(
    'ShopUrl' => 'yourshop.myshopify.com',
    'ApiKey' => '***YOUR-PRIVATE-API-KEY***',
    'SharedSecret' => '***YOUR-SHARED-SECRET***',
);

PHPShopify\ShopifySDK::config($config);
  1. Create the authentication request

The redirect url must be white listed from your app admin as one of Application Redirect URLs.

//your_authorize_url.php
$scopes = 'read_products,write_products,read_script_tags,write_script_tags';
//This is also valid
//$scopes = array('read_products','write_products','read_script_tags', 'write_script_tags'); 
$redirectUrl = 'https://yourappurl.com/your_redirect_url.php';

\PHPShopify\AuthHelper::createAuthRequest($scopes, $redirectUrl);
  1. Get the access token when redirected back to the $redirectUrl after app authorization.
//your_redirect_url.php
PHPShopify\ShopifySDK::config($config);
$accessToken = \PHPShopify\AuthHelper::getAccessToken();
//Now store it in database or somewhere else

You can use the same page for creating the request and getting the access token (redirect url). In that case just skip the 2nd parameter $redirectUrl while calling createAuthRequest() method. The AuthHelper class will do the rest for you.

//your_authorize_and_redirect_url.php
PHPShopify\ShopifySDK::config($config);
$accessToken = \PHPShopify\AuthHelper::createAuthRequest($scopes);
//Now store it in database or somewhere else

Get the ShopifySDK Object

$shopify = new PHPShopify\ShopifySDK;

You can provide the configuration as a parameter while instantiating the object (if you didn't configure already by calling config() method)

$shopify = new PHPShopify\ShopifySDK($config);
Now you can do get(), post(), put(), delete() calling the resources in the object oriented way. All resources are named as same as it is named in shopify API reference. (See the resource map below.)

All the requests returns an array (which can be a single resource array or an array of multiple resources) if succeeded. When no result is expected (for example a DELETE request), an empty array will be returned.

  • Get all product list (GET request)
$products = $shopify->Product->get();
  • Get any specific product with ID (GET request)
$productID = 23564666666;
$product = $shopify->Product($productID)->get();

You can also filter the results by using the url parameters (as specified by Shopify API Reference for each specific resource).

  • For example get the list of cancelled orders after a specified date and time (and fields specifies the data columns for each row to be rendered) :
$params = array(
    'status' => 'cancelled',
    'created_at_min' => '2016-06-25T16:15:47-04:00',
    'fields' => 'id,line_items,name,total_price'
);

$orders = $shopify->Order->get($params);
  • Create a new order (POST Request)
$order = array (
    "email" => "foo@example.com",
    "fulfillment_status" => "unfulfilled",
    "line_items" => [
      [
          "variant_id" => 27535413959,
          "quantity" => 5
      ]
    ]
);

$shopify->Order->post($order);
  • Update an order (PUT Request)
$updateInfo = array (
    "fulfillment_status" => "fulfilled",
);

$shopify->Order($orderID)->put($updateInfo);
  • Remove a Webhook (DELETE request)
$webHookID = 453487303;

$shopify->Webhook($webHookID)->delete());

The child resources can be used in a nested way.

You must provide the ID of the parent resource when trying to get any child resource

  • For example, get the images of a product (GET request)
$productID = 23564666666;
$productImages = $shopify->Product($productID)->Image->get();
  • Add a new address for a customer (POST Request)
$address = array(
    "address1" => "129 Oak St",
    "city" => "Ottawa",
    "province" => "ON",
    "phone" => "555-1212",
    "zip" => "123 ABC",
    "last_name" => "Lastnameson",
    "first_name" => "Mother",
    "country" => "CA",
);

$customerID = 4425749127;

$shopify->Customer($customerID)->Address->post($address);
  • Create a fulfillment event (POST request)
$fulfillmentEvent = array(
    "status" => "in_transit"
);

$shopify->Order($orderID)->Fulfillment($fulfillmentID)->Event->post($fulfillmentEvent);
  • Update a Blog article (PUT request)
$blogID = 23564666666;
$articleID = 125336666;
$updateArtilceInfo = array(
    "title" => "My new Title",
    "author" => "Your name",
    "tags" => "Tags, Will Be, Updated",
    "body_html" => "<p>Look, I can even update through a web service.<\/p>",
);
$shopify->Blog($blogID)->Article($articleID)->put($updateArtilceInfo);
  • Delete any specific article from a specific blog (DELETE request)
$blogArticle = $shopify->Blog($blogID)->Article($articleID)->delete();

Resource Mapping

Some resources are available directly, some resources are only available through parent resources and a few resources can be accessed both ways. It is recommended that you see the details in the related Shopify API Reference page about each resource. Each resource name here is linked to related Shopify API Reference page.

Use the resources only by listed resource map. Trying to get a resource directly which is only available through parent resource may end up with errors.

Custom Actions

There are several action methods which can be called without calling the get(), post(), put(), delete() methods directly, but eventually results in a custom call to one of those methods.

  • For example, get count of total projects
$productCount = $shopify->Product->count();
  • Make an address default for the customer.
$shopify->Customer($customerID)->Address($addressID)->makeDefault();
  • Search for customers with keyword "Bob" living in country "United States".
$shopify->Customer->search("Bob country:United States");

Custom Actions List

The custom methods are specific to some resources which may not be available for other resources. It is recommended that you see the details in the related Shopify API Reference page about each action. We will just list the available actions here with some brief info. each action name is linked to an example in Shopify API Reference which has more details information.

  • (Any resource type except ApplicationCharge, CarrierService, FulfillmentService, Location, Policy, RecurringApplicationCharge, ShippingZone, Shop, Theme) ->

    • count() Get a count of all the resources. Unlike all other actions, this function returns an integer value.
  • Comment ->

  • Customer ->

    • search() Search for customers matching supplied query
  • Customer -> Address ->

    • makeDefault() Sets the address as default for the customer
    • set($params) Perform bulk operations against a number of addresses
  • Discount ->

  • Fulfillment ->

  • GiftCard ->

    • disable() Disable a gift card.
    • search() Search for gift cards matching supplied query
  • InventoryLevel ->

  • Order ->

  • Order -> Refund ->

  • ProductListing ->

    • productIds() Retrieve product_ids that are published to your app.
  • RecurringApplicationCharge ->

  • SmartCollection ->

    • sortOrder($params) Set the ordering type and/or the manual order of products in a smart collection
  • User ->

Reference