We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 81e6cc8 commit 3b6b023Copy full SHA for 3b6b023
README.md
@@ -54,6 +54,17 @@ $config = array(
54
'AccessToken' => '***ACCESS-TOKEN-FOR-THIRD-PARTY-APP***',
55
);
56
57
+PHPShopify\ShopifySDK::config($config);
58
+```
59
+You can use specific Shopify API Version by adding in the config array
60
+
61
+```php
62
+$config = array(
63
+ 'ShopUrl' => 'yourshop.myshopify.com',
64
+ 'AccessToken' => '***ACCESS-TOKEN-FOR-THIRD-PARTY-APP***',
65
+ 'ApiVersion' => '2022-07',
66
+);
67
68
PHPShopify\ShopifySDK::config($config);
69
```
70
##### How to get the permanent access token for a shop?
0 commit comments