-
I've tried adding several new webhooks but they seem to get completely ignored. Here is my current registrar..and the scope is set to read_orders in the .env. I've tried blowing away the proj and rebuilding. But the new webhook is never recognized.
|
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 5 replies
-
Just tested it out - it seems to be working as expected. I'm assuming you haven't touched anything else like how the webhooks are registered and related stuff. I updated my const webhookRegistrar = async () => {
shopify.webhooks.addHandlers({
APP_UNINSTALLED: {
deliveryMethod: DeliveryMethod.Http,
callbackUrl: "/webhooks/app_uninstalled",
callback: appUninstallHandler,
},
ORDERS_PAID: {
deliveryMethod: DeliveryMethod.Http,
callbackUrl: "/webhooks/app_uninstalled",
callback: appUninstallHandler,
},
});
}; I've used the same function because we are just concerned about testing if webhook is registered, and it is. When you add a new webhook make sure you're doing two things:
If you're still running into issues, please ping me at @kinngh and we can hop on a call |
Beta Was this translation helpful? Give feedback.
-
Hello @kinngh
|
Beta Was this translation helpful? Give feedback.
Resolved: Didn't have protected customer data access.