No content to show
User Activity
I already have built a custom app using the latest Node template (https://github.com/Shopify/shopify-app-template-node).I can manage the product via product API with this code: app.get("/api/products/count", async (_req, res) => {
const countData =...
07-04-2023
@SBD_ Thank you so much for your reply, yes I am trying to process a webhook (fulfillment notification) from another server.I tried with the code above, but giving an error in 'shop' as an argument, I tried adding the shop URL directly ("iplaysafe-co...
07-03-2023
I already have built a custom app using the latest Node template (https://github.com/Shopify/shopify-app-template-node). I installed it in the development store and distributed it in another store. Now I am in need of an offline access token to use S...
Hi thank you for your reply, I am getting "No shop provided", as a response: My code is below: app.post("/api/notification_reciever", async (_req, res) => { const payload = _req.body; const fulfillment = await shopify.api.rest.Fulfillment({session: r...
Hi, I am new to Shopify App development, but I have to build a fairly complex app on top of NodeJS and ReactJS. I got stuck with receiving webhook notifications from an external server. I have developed a POST API endpoint in my app to work as a webh...