Bigcommerce webhooks not working

2019-04-13 06:33发布

问题:

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?

回答1:

I was going through the exact same thing, and then I realized that my intermediate SSL certificates were not loaded correctly. Once I established those through my CA and host, the triggers were finally hitting my server.