php-shopify
php-shopify copied to clipboard
PHP SDK for Shopify API
Is it possible to build in an automatic throttling of API calls to avoid the too many requests error? There are many other implementations of the leaky bucket algorithm. Basically,...
Hi guys, I'm having some issue for fulfill an order that have 1 product with app fulfillment service and another one that have a fulfillment service to manual. When i...
Hi, When adding a bulk order link, you have the ability to selection multiple orders and do a request to your app. The ids are added in the url like...
In version 1.1.23 the Shopify version was updated from 2022-01 to 2022-07. There are some breaking changes between these versions. This now results in 404 NOT found: ` $client->Order($order->Order_ID)->Fulfillment->post($body);` ```...
Hey :) Looking at reordering the values of a specific product option named "Delivery Option". There's over 1000 products and most have this as an option field, and they all...
Can you please help me out from this my laravel version is 7 and phpclassic/php-shopify version is ^1.1 
I want to create a Metafield for my product information. What should I do? ↓It doesn't show up even if I post it. `$postArray = array( "namespace" => "newmetafields", "key"...
Hi, Thanks for this nice SDK, I am facing a problem As you know to before createAuthRequest, we have to use PHPShopify\ShopifySDK::config($config) and in this $config we must pass ShopUrl...
$config= array( 'ShopUrl' => $store->shopUrl, 'AccessToken' => $store->accessToken, ); $shopify = new \PHPShopify\ShopifySDK($config); print_r($shopify->Order->get($options)); With these commands I can get all the orders, but not the customers associated with them?...
Hello, I would like to upload a return label to an order when the customer makes a return request. I am mainly concerned with the return label. Thanks for any...