WooCommerce-REST-API-Client-Library
WooCommerce-REST-API-Client-Library copied to clipboard
A PHP wrapper for the WooCommerce REST API
The SKU filter (#131) returns false even though a product exists, but is in Draft status.
Hello I'm trying to insert new products via your library. I got a solution to retrieve products with custom fields by using the following syntax; $wooCommerceApiClient->products->get(116, array('filter[meta]' => 'true')); And...
The total number of resources and pages are always included in the X-WC-Total and X-WC-TotalPages HTTP headers. Would be great to have access to those or have access to ```...
Performing a product update via the library results in an error. The client tries to perform a PUT /wc-api/v2/products/ which does not work as expected. Referring to v3 of the...
Hello, I apologize if this is the wrong place to ask this question, but I can't seem to find anywhere else. I cannot create a subscription after successfully creating an...
See issue #134 for details
Looks like the new V3 does not allow creating of product categories and tags when creating a product using the api: print_r( $client->products->create( array( 'title' => 'product_name','sku' => 'sku_value', 'type'...
something like that $x = $client->products->get_by_sku( 'QWBENEFIT' ); if (!$x) { echo "OK! "; } else { echo "BAD! "; }
I have been using the package for a few weeks now but since upgrading my WooCommerce version to 2.4.7 I have been having issues. I use the feed to create...
Please see link https://github.com/woothemes/woocommerce/commit/a4fe8267402358369a4805b1622ed09b49015b20 I'm trying to make this login end point work with this library so that I can create a login page for my customers on android phones....