Pratik
Pratik

Reputation: 53

Bigcommerce webhooks not working

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?

Upvotes: 2

Views: 922

Answers (1)

Zetaphor
Zetaphor

Reputation: 504

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.

Upvotes: 1

Related Questions