php-shopify
php-shopify copied to clipboard
PHP SDK for Shopify API
Shopify now appears to support translatable content for products, but I could not see that this is implemented in the code (or how to access it): https://shopify.dev/docs/api/admin-graphql/2023-07/queries/translatableResource#section-examples
I propose adding a new feature to the library enabling users to interact with the [Shopify Storefront GraphQL API](https://shopify.dev/docs/api/storefront). This API necessitates an alternative endpoint for authenticated requests: `https://my-store.myshopify.com/api/2023-04/graphql.json`. **Key...
I've been working on extending some of the functionality of the `phpclassic/php-shopify` library as a Laravel Service Provider. One of the things that I wish I could do for every...
Hi, I received an error message "Internal Server Error", error code 500 when updating product images to Shopify PHPShopify\Exception\ApiException Object( [message:protected] => Internal Server Error [string:Exception:private] => [code:protected] => 500...
activate method no longer seem to exist on recurring application charge. Added a few methods based on latest api docs. 1. create: Creates a charge with provided data 2. charges:...
With Shopify API 2022-01, I fulfilled my orders with these instructions : ``` $shopify->Order($orderID)->Fulfillment->post([ "tracking_number" => 'XXXXXXX' "tracking_urls" => 'https://tracking_url...', "notify_customer" => true, "location_id" => 'location_id, ]); ``` With Shopify...
It looks like Shopify is getting away from using Price Rules and using the 'write_discounts' and 'read_discounts' scopes primarily. I can't seem to get these scopes added using phpclassic/php-shopify. (All...
This PR attempts to support resource/object level data keys _as well as_ request level. As example: The recently added `AssignedFulfillmentOrder` resource. It returns results with the `fulfillment_orders` key, which does...
Hello, I try to develop a Symfony app in wich I would like to change the value of **fulfillment_status** for an order, from **null** to **fulfilled**. First of all, I...
I created my app `` and it shows this: https://tienda-del-reino.myshopify.com/admin/oauth/authorize?client_id=d31405c84dfa1d9d04f9473074c00a94&redirect_uri=http://localhost:81/shopify/app.php&scope=read_products,write_products What im doing wrong ?