Download the PHP package seka19/php-shopify without Composer
On this page you can find all versions of the php package seka19/php-shopify. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download seka19/php-shopify
More information about seka19/php-shopify
Files in seka19/php-shopify
Package php-shopify
Short Description PHP SDK for Shopify API
License Apache-2.0
Homepage https://github.com/phpclassic/php-shopify
Informations about the package php-shopify
PHP Shopify SDK
PHPShopify is a simple SDK implementation of Shopify API. It helps accessing the API in an object oriented way.
Installation
Install with Composer
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 inPHPShopify\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.
For Third party apps, use the permanent access token.
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
2) Create the authentication request
The redirect url must be white listed from your app admin as one of Application Redirect URLs.
If you want the function to return the authentication url instead of auto-redirecting, you can set the argument
$return
(5th argument) totrue
.
3) Get the access token when redirected back to the $redirectUrl
after app authorization.
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 callingcreateAuthRequest()
method. The AuthHelper class will do the rest for you.
Get the ShopifySDK Object
You can provide the configuration as a parameter while instantiating the object (if you didn't configure already by calling config()
method)
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)
- Get any specific product with ID (GET request)
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) : - Create a new order (POST Request)
Note that you don't need to wrap the data array with the resource key (
order
in this case), which is the expected syntax from Shopify API. This is automatically handled by this SDK.
-
Update an order (PUT Request)
- Remove a Webhook (DELETE request)
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)
-
Add a new address for a customer (POST Request)
-
Create a fulfillment event (POST request)
-
Update a Blog article (PUT request)
- Delete any specific article from a specific blog (DELETE request)
GraphQL v1.1
The GraphQL Admin API is a GraphQL-based alternative to the REST-based Admin API, and makes the functionality of the Shopify admin available at a single GraphQL endpoint. The full set of supported types can be found in the GraphQL Admin API reference. You can simply call the GraphQL resource and make a post request with a GraphQL string:
The GraphQL Admin API requires an access token for making authenticated requests. You can obtain an access token either by creating a private app and using that app's API password, or by following the OAuth authorization process. See GraphQL Authentication Guide
GraphQL Builder
This SDK only accepts a GraphQL string as input. You can build your GraphQL from Shopify GraphQL Builder
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.
- AbandonedCheckout
- ApplicationCharge
- Blog
- Blog -> Article
- Blog -> Article -> Event
- Blog -> Article -> Metafield
- Blog -> Event
- Blog -> Metafield
- CarrierService
- Collect
- Comment
- Comment -> Event
- Country
- Country -> Province
- Currency
- [CustomCollection]()
- CustomCollection -> Event
- CustomCollection -> Metafield
- Customer
- Customer -> Address
- Customer -> Metafield
- Customer -> Order
- CustomerSavedSearch
- CustomerSavedSearch -> Customer
- DraftOrder
- Discount (Shopify Plus Only)
- DiscountCode
- Event
- FulfillmentService
- GiftCard (Shopify Plus Only)
- InventoryItem
- InventoryLevel
- Location (read only)
- Location -> InventoryLevel
- Metafield
- Multipass (Shopify Plus Only, API not available yet)
- Order
- Order -> Fulfillment
- Order -> Fulfillment -> Event
- Order -> Risk
- Order -> Refund
- Order -> Transaction
- Order -> Event
- Order -> Metafield
- Page
- Page -> Event
- Page -> Metafield
- Policy (read only)
- Product
- Product -> Image
- Product -> Variant
- Product -> Variant -> Metafield
- Product -> Event
- Product -> Metafield
- ProductListing
- ProductVariant
- ProductVariant -> Metafield
- RecurringApplicationCharge
- RecurringApplicationCharge -> UsageCharge
- Redirect
- ScriptTag
- ShippingZone (read only)
- Shop (read only)
- SmartCollection
- SmartCollection -> Event
- Theme
- Theme -> Asset
- User (read only, Shopify Plus Only)
- Webhook
- GraphQL
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
-
Make an address default for the customer.
- Search for customers with keyword "Bob" living in 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 ->
- markSpam() Mark a Comment as spam
- markNotSpam() Mark a Comment as not spam
- approve() Approve a Comment
- remove() Remove a Comment
- restore() Restore a Comment
-
Customer ->
- search() Search for customers matching supplied query
- send_invite($data) Sends an account invite to a customer.
-
Customer -> Address ->
- makeDefault() Sets the address as default for the customer
- set($params) Perform bulk operations against a number of addresses
-
DraftOrder ->
- [send_invoice($data)]() Send the invoice for a DraftOrder
- [complete($data)]() Complete a DraftOrder
-
Discount ->
- [enable()]() Enable a discount
- [disable()]() Disable a discount
-
DiscountCode ->
- [lookup($data)]() Retrieves the location of a discount code.
-
Fulfillment ->
- complete() Complete a fulfillment
- open() Open a pending fulfillment
- cancel() Cancel a fulfillment
-
GiftCard ->
-
InventoryLevel ->
- adjust($data) Adjust inventory level.
- connect($data) Connect an inventory item to a location.
- set($data) Set an inventory level for a single inventory item within a location.
-
Order ->
- close() Close an Order
- open() Re-open a closed Order
- cancel($data) Cancel an Order
-
Order -> Refund ->
- calculate() Calculate a Refund.
-
ProductListing ->
- productIds() Retrieve product_ids that are published to your app.
-
RecurringApplicationCharge ->
- activate() Activate a recurring application charge
- customize($data) Customize a recurring application charge
-
SmartCollection ->
- sortOrder($params) Set the ordering type and/or the manual order of products in a smart collection
- User ->
- current() Get the current logged-in user
Reference
Donation
If this project help you reduce time to develop, you can donate any amount, which will help us to devote more hours to this project and ensure more frequent updates.
All versions of php-shopify with dependencies
ext-curl Version *
ext-json Version *