Jun 28, 2019
Hi everyone, how can i store and manage app settings? For example, when user will install my app, he will go to app settings and put some data. Now i want to receive this user's data on my end. I ...
Mar 12, 2019
Hello, i'm trying to build an app with Node.js and i have a question: is it possible to abort a customer's account creation? For example: right now, i'm using customers/create webhook and receive dat...
No content to show
User Activity
Okay, i've update all libs with npm update, then clean cache and install again. Now, seems like redirect issue is gone
koa-shopify-auth 3.1.33koa-shopify-webhooks 1.1.12koa-router 7.4.0koa-session 5.12.3Everything works fine for about month ago. Now i'm stuck with redirect loop
Same here. Chrome (MacOS) latest build
10-06-2019
Hello,I've added 3 webhoks in my app settingshttps://host/webhooks/customers/data_requesthttps://host/webhooks/customers/redacthttps://host/webhooks/shop/redactIn my node.js app i'm trying to register these webhooks, but i've got an error: const c...
09-16-2019
Why? Orders response has "browser-ip" for example
09-16-2019
Hello, i'm using customers/create webhook in my app and i'm wondering why you don't pass customer's IP address to webhook?https://help.shopify.com/en/api/reference/customers/customerOr maybe there are any other possibilities to get a customer's IP du...
09-12-2019
How can i redirect user to a specific page after getting webhook data? This doesn't work:router.post('/webhooks/customers/create', webhook, (ctx) => {
/* handle customers create */
console.log('received webhook: ', ctx.state.webhook);
if (ctx.r...
09-12-2019
Okay, i've tried to ouput ctx.response status: 202,
message: 'Accepted',
header: [Object: null prototype] {},
body: undefined But body is undefined here. Why?
09-12-2019
Hello,I'm using Koa-shopify-webhook to register and recieve webhook. I did:const customersWebhookRegistration = await registerWebhook({
address: `${HOST}/webhooks/customers/create`,
topic: 'CUSTOMERS_CREATE',
accessToken,
shop,
});
if (customersWebh...