shopify-php-sdk icon indicating copy to clipboard operation
shopify-php-sdk copied to clipboard

PHP SDK for development with the Shopify API

Results 23 shopify-php-sdk issues
Sort by recently updated
recently updated
newest added

Could we get the ID of the product in the Response of the API somehow? Thank you guys in advance!!

Solve the problem that there is no Shopify version number in the request URL, resulting in 404

`$productService->all();` ``` GuzzleHttp\Exception\ClientException Client error: `GET https://REDACTED.myshopify.com/admin/api/products.json` resulted in a `404 Not Found` response: {"errors":"Not Found"} ``` ``` $ curl -I https://REDACTED.myshopify.com/admin/api/products.json HTTP/2 401 date: Thu, 29 Jul 2021 01:10:26...

Please refer to https://github.com/robwittman/shopify-php-sdk/issues/43 > PrivateApi.php, Line 32; ``` $args = array( 'base_uri' => sprintf( "https://%s/admin/api/%s", $this->myshopify_domain, $this->getApiVersion() ), 'headers' => array( 'Authorization' => $this->createBasicAuthHeader( $this->api_key, $this->password ) ) );...

Hi, Thank you code, But I use your code have a question, New API version is 2020-01, but I call you SDK, Return is an error, How to use API...

Hi thank you for your sdk ThemeService dosent work for example method all() not get result in file lib/vendor/robwittman/shopify-php-sdk/src/Enum/Fields/ThemeFields.php method is getFieldType() instead of getFieldTypes() you lose "S" at the...

shopify use Cursor-based pagination in api version 2019-07 and above. so, add method getResponsePaginationLinks to fetch links(next|previous) from Shopify Link headers. ~ Thank you for the package.

### I want to use a full link(with query string) send request `$client->send($request, [ 'query' => [] ]);` When using GuzzleHttp/Client as the client, this code will remove the query...