WARNING: THIS SITE IS A MIRROR OF GITHUB.COM / IT CANNOT LOGIN OR REGISTER ACCOUNTS / THE CONTENTS ARE PROVIDED AS-IS / THIS SITE ASSUMES NO RESPONSIBILITY FOR ANY DISPLAYED CONTENT OR LINKS / IF YOU FOUND SOMETHING MAY NOT GOOD FOR EVERYONE, CONTACT ADMIN AT ilovescratch@foxmail.com
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A simple PHP API wrapper for Shopify using Guzzle [Shopify API](https://help.shopify.com/api/getting-started).
4
+
5
+
## Installation
6
+
7
+
Install via [Composer](https://getcomposer.org/) by running `composer require arslanramay/php-shopify-api` in your project directory.
8
+
9
+
## Usage
10
+
11
+
In order to use this wrapper library you will need to provide credentials to access Shopify's API.
12
+
13
+
You will either need an access token for the shop you are trying to access (if using a [public application](https://help.shopify.com/api/getting-started/authentication#public-applications)) or an API Key and Secret for a [private application](https://help.shopify.com/api/getting-started/authentication#private-applications).
14
+
15
+
## Examples
16
+
17
+
#### Make an API call
18
+
```php
19
+
use arslanramay\ShopifyPHP\Shopify;
20
+
21
+
// Initialize the client
22
+
$shopify = new Shopify('exampleshop.myshopify.com', 'mysupersecrettoken');
0 commit comments