Topics covering webhook creation & management, event handling, Pub/Sub, and Eventbridge, in Shopify apps.
On 11/19/2021 at around 14:00 PST we tested webhooks that we created via API. We accepted any type of request (GET/POST/PUT/DELETE) and logged the webhook hit.
Accessing the webhook URL via the browser triggered the log
However, using the Shopify webhook test notification AND waiting for new orders to actually be created, did not result in the webhook address being hit (no logging occurred).
Can you please look into the logs around this type
Update on this:
Through experimenting, I discovered that the issue is that Shopify is incorrectly restricting a certain url pattern
Any url pattern containing /shopify/ does not work. Seems silly because having a webhook url with /shopify/ in it would make logical sense.
so www.domain.com/api/shopify/order/create would not work but www.domain.com/api/shpfy/order/create would