Access a community of over 900,000 Shopify Merchants and Partners and engage in meaningful conversations with your peers.
Hi,
I'm trying to add a simple custom route to the Node Shopify CLI starter code with
router.get("/app", verifyRequest(), async (ctx) => {
ctx.body = { msg: "fdsa" };
});
, but I make the request to /app I get a response from /auth. I think this is from the verifyRequest() middleware redirecting to /auth which I also think gets handled by createShopifyAuth(), but how am I supposed to access the data I am supposed to get from the /app route?
Thank you
Was a solution for this ever found? I am having the same issue.