bigcommerce-api-php icon indicating copy to clipboard operation
bigcommerce-api-php copied to clipboard

Connect PHP applications with the Bigcommerce Platform

Results 78 bigcommerce-api-php issues
Sort by recently updated
recently updated
newest added

Fatal error: Uncaught exception 'Bigcommerce\Api\NetworkError' with message 'SSL peer certificate or SSH remote key was not OK'

how can get product filter by specific category ?

When getting product SKUs, the bigcommerce API limits the response to 50 by default and uses pagination. In Resources/Product.php the function skus() needs to take pagination into account. This is...

### Expected behavior ``` $product->update(); //updates product ``` ### Actual behavior ``` PHP Fatal error: Uncaught Client Error (400): The field 'calculated_price' cannot be written to. Please remove it from...

Fatal error: Class 'PHPUnit_Framework_TestCase' not found in /home/devmarkn/public_html/hg-bigcommerce-sync/bigcommerce-api-php-master/test/Unit/Api/ClientTest.php on line 9

New'ish error ``` Uncaught exception 'Bigcommerce\Api\NetworkError' with message 'Couldn't resolve host 'store-c42p4.mybigcommerce.com'' in /vendor/bigCommerce/bigcommerce.php:82 Stack trace: #0 /vendor/bigCommerce/bigcommerce.php(142): Bigcommerce\Api\Connection->handleResponse() #1 /vendor/bigCommerce/bigcommerce.php(333): Bigcommerce\Api\Connection->get('https://store-c...') #2 /vendor/bigCommerce/bigcommerce.php(568): Bigcommerce\Api\Client::getCollection('/orders?limit=1...', 'Order') #3 ``` Seems like...

https://github.com/bigcommerce/bigcommerce-api-php/blob/master/src/Bigcommerce/Api/Client.php#L676-L680 This getOptionValues() function does not filter by an Option ID, this seems to be contradictory to how we built out similar functions such as getOrderProducts(). I think we should...

I wrote a program for a client to automatically update inventory levels for his store using the BigCommerce Legacy API and PHP. This same code has been working fine for...

I am trying to update a rule and every time i get the following error. Fatal error: Uncaught Client Error (400): The field 'image_file' is invalid. I have included the...

var_dump( Bigcommerce::getLastError() ); array(1) { [0]=> object(stdClass) (2) { ["status"]=> int(400) ["message"]=> string(28) "The field 'type' is invalid." } } returns 'status' and not 'code' as per your documentation. Furthermore,...