bigcommerce

Bigcommerce webhooks not working

◇◆丶佛笑我妖孽 提交于 2019-12-04 17:13:58
I have generated access_token and subscribed to webhooks successfully as guided here http://developer.bigcommerce.com/docs/api/webhooks/quickstart . Verified that webhooks are active and destination url is also correct with following request- curl -XGET -H 'X-Auth-Client: [client_id]' -H 'X-Auth-Token: [auth_token]' https://hooks-beta.bigcommerce.com/producer/store/[store_key] However I am not receiving triggers for subscribed events. Is there anything else that I have to do to listen to webhook events? I was going through the exact same thing, and then I realized that my intermediate SSL

Cart API V3: Can't create a Cart for product that has options

独自空忆成欢 提交于 2019-12-04 06:12:52
问题 When I create a cart with products without options, everything works fine, but if any of the products has product option, it doesn't work Here I got the product options, it has one option with id 21 When I use this option id in creating the API, it doesn't work 回答1: If you are adding a product to the cart that has a single modifier associated with it (like a text field) try the POST to the cart API without including the "variant_id" field: { "line_items": [ { "quantity": 1, "product_id": 1001

Login to BigCommerce API through iOS Application as a customer

帅比萌擦擦* 提交于 2019-12-04 06:02:06
问题 I am developing an iOS application for a store on BigCommerce.com . I have successfully retrieved the products list from the BigCommerce API and I have also created a new user using the same. Create User: https://developer.bigcommerce.com/api/stores/v2/customers#create-a-customer Product List: https://developer.bigcommerce.com/api/stores/v2/products But i am unable to understand that how should i login into the BigCommerce Store as a customer to purchase products listed. Please can anyone

How can I integrate Third Party payment gateway in BIGCOMMERCE store?

大城市里の小女人 提交于 2019-12-02 21:26:10
问题 From: Tictocd.com TO: Bigcommerce My boss don't want the 2CHECKOUT payment gateway method, which is only supported Brunei Dollar because of the review they conducted. One of the BIGCOMMERCE Live Chat Operator said that we can use a third party payment method which is BIDB (Brunei Islam Brunei Darussalam). BIBD said that they will provide PHP script that will help us to do the payment method online, but how we can integrate that script in our store? I am anticipating for your positive response

Stencil Paper.loadTranslations Error

与世无争的帅哥 提交于 2019-12-02 15:41:11
问题 When trying to run Stencil I am receiving the error below. Debug: internal, implementation, error TypeError: Uncaught error: self.assembler.getTranslations is not a function at Paper.loadTranslations (/user/.nvm/versions/node/v4.4.0/lib/node_modules/@bigcommerce/stencil-cli/node_modules/@bigcommerce/stencil-paper/index.js:137:20) at /user/.nvm/versions/node/v4.4.0/lib/node_modules/@bigcommerce/stencil-cli/node_modules/@bigcommerce/stencil-paper/index.js:62:18 at /user/.nvm/versions/node/v4.4

Cart API V3: Can't create a Cart for product that has options

心不动则不痛 提交于 2019-12-02 09:41:28
When I create a cart with products without options, everything works fine, but if any of the products has product option, it doesn't work Here I got the product options, it has one option with id 21 When I use this option id in creating the API, it doesn't work If you are adding a product to the cart that has a single modifier associated with it (like a text field) try the POST to the cart API without including the "variant_id" field: { "line_items": [ { "quantity": 1, "product_id": 1001, "option_selections": [ { "option_id": 123, "option_value": "Hello!" } ] } ] } If your product has one

Get image url from BigCommerce API with PHP

寵の児 提交于 2019-12-02 08:54:24
Can anybody help me to retrieve Image URL for a BigCommerce Product in PHP? I tried with Bigcommerce::getProductImages($product->id); but it doesn't helps. I hope the API gets updated in latest version. Pls suggest an exact solution. Thanks in advance. From the code, it looks like the getProductImages has not been implemented. I added a quick patch. Use this pull request if it has not been merged yet ( https://github.com/bigcommerce/bigcommerce-api-php/pull/61 ) The code looks like this - $images = Bigcommerce::getProductsImages(243); print_r($images) when iterating thru products you can grab

Stencil Paper.loadTranslations Error

混江龙づ霸主 提交于 2019-12-02 05:12:19
When trying to run Stencil I am receiving the error below. Debug: internal, implementation, error TypeError: Uncaught error: self.assembler.getTranslations is not a function at Paper.loadTranslations (/user/.nvm/versions/node/v4.4.0/lib/node_modules/@bigcommerce/stencil-cli/node_modules/@bigcommerce/stencil-paper/index.js:137:20) at /user/.nvm/versions/node/v4.4.0/lib/node_modules/@bigcommerce/stencil-cli/node_modules/@bigcommerce/stencil-paper/index.js:62:18 at /user/.nvm/versions/node/v4.4.0/lib/node_modules/@bigcommerce/stencil-cli/node_modules/async/lib/async.js:718:13 at async.forEachOf

Noobie bigcommerce API connection

半城伤御伤魂 提交于 2019-12-02 04:57:45
问题 Sorry for the noobie question but I just wanted to know the process by which I could at least connect to my bigcommerce store and query it via a PHP or curl script. If someone could help me with simple instructions. i.e download bigcommerce php script, install , generate API on user, install wamp or some other php mac app paste into here blah blah blah I would be eternally grateful. I have been reading and reading and just obvioulsy missing something as I cant gereneate anything out of the

BigCommerce Stencil - Retrieve Product Custom Fields in Product Card

北慕城南 提交于 2019-12-02 03:36:19
问题 I'm trying to retrieve each product's custom_fields data on the category list pages in BigCommerce Stencil. This documentation here, and the JSON product representation below, would suggest this is not possible. It is hard for me to believe this functionality would be left out of Stencil, considering it was available in Blueprint. { "id": 691, "name": "Archipelago Botanicals - Pomegranate Lip Gloss", "url": "http://******.mybigcommerce.com/archipelago-botanicals-pomegranate-lip-gloss/",