Why aren't my webhooks working consistently on the remix template?

Why aren't my webhooks working consistently on the remix template?

nelos7
Shopify Partner
7 0 1

Hi,

I use the shopify remix template for creating my app, but I don't know why the webhooks work approximatively 1 times on 20, I don't figure out what is the problem, here is the webhook subscription code :

webhooks: {
    APP_UNINSTALLED: {
      deliveryMethod: DeliveryMethod.Http,
      callbackUrl: "/webhooks",
    },
    CUSTOMERS_DATA_REQUEST: {
      deliveryMethod: DeliveryMethod.Http,
      callbackUrl: "/webhooks",
    },
    CUSTOMERS_REDACT: {
      deliveryMethod: DeliveryMethod.Http,
      callbackUrl: "/webhooks",
    },
    PRODUCTS_UPDATE: {
      deliveryMethod: DeliveryMethod.Http,
      callbackUrl: "/webhooks",
    },
  }
I tried with with "npm run shopify webhook trigger" and it work but not when I update a product on the store dashboard.
Has anyone ever has this problem ?
Replies 0 (0)