skip to Main Content

shopify uninstall app webhook is not working

In my server.js file, I register the app/uninstalled webhook inside the afterAuth function like this: const response = await Shopify.Webhooks.Registry.register({ shop, accessToken, path: "/webhooks", topic: "APP_UNINSTALLED", apiVersion: ApiVersion.October20, webhookHandler: (topic, shop, body) => { //console.log(topic, shop,body); delete ACTIVE_SHOPIFY_SHOPS[shop]; }, });…

VIEW QUESTION
Back To Top
Search