I was able to successfully create a webhook for my BigCommerce store. However, I do not receive any requests from the store.
When I created the webhook, I got this answer, which makes me think that it works correctly:
{
"id": 437,
"client_id": "dagb0rxpdd2o3znkebn5pydxj4ztcq8",
"store_hash": "xxxxxx",
"scope": "store/product/updated",
"destination": "https://my-domain.com/index.php/webhooks/product_updated/",
"headers": null,
"is_active": true,
"created_at": 1403545148,
"updated_at": 1403545148
}
Now, when I go into my store, edit the product and save, I do not receive any requests to my destination URL. I checked the aps ssl access logs and do not see requests from BigCommerce. I tested the webhook website by sending my own POST request to my destination URL, and it works correctly, so it seems that something is not allowing sending web host requests from BigCommerce to my server.
Can someone point me in the right direction, what can I lose?