Kevin O'Sullivan

Results 40 comments of Kevin O'Sullivan

We are continually looking to improve the documentation content through the use of repo markdown files in combination with out investment in the https://shopify.dev documentation website. At this time, we're...

Using the latest CLI to generate a Node app template will include generic GDPR handlers and registration: setup method https://github.com/Shopify/shopify-app-template-node/blob/cli_three/web/gdpr.js `index.js` extract: ```typescript // This sets up the mandatory GDPR...

@olivierbouchard To set up the `/api/webhooks` endpoint: https://github.com/Shopify/shopify-app-template-node/blob/cli_three/web/index.js#L79-L93 ```javascript // Do not call app.use(express.json()) before processing webhooks with // Shopify.Webhooks.Registry.process(). // See https://github.com/Shopify/shopify-api-node/blob/main/docs/usage/webhooks.md#note-regarding-use-of-body-parsers // for more details. app.post("/api/webhooks", async (req,...

Oh, do you mean the App Setup in your Partner Dashboard? ![Screen Shot 2022-10-17 at 11 08 23 AM](https://user-images.githubusercontent.com/56687600/196214309-355ef99c-b55b-47e8-b88b-3bc8d642af21.png) For these, it should be your App URL (same as configured...

Documentation regarding body parsers [here](https://github.com/Shopify/shopify-api-node/blob/main/docs/usage/webhooks.md#note-regarding-use-of-body-parsers) Note that webhook processing in `v6.0.0` will be changing (along with just about everything else!) ... release candidate `v6.0.0-rc1` is available.

Documentation regarding body parsers [here](https://github.com/Shopify/shopify-api-node/blob/main/docs/usage/webhooks.md#note-regarding-use-of-body-parsers) Note that webhook processing in `v6.0.0` will be changing (along with just about everything else!) ... release candidate `v6.0.0-rc1` is available.

This will now be possible with the upcoming version 6 of the API library. There's a release candidate currently available for download (`v6.0.0-rc1`).

Here are some [instructions](https://github.com/Shopify/shopify-app-template-node#i-cant-get-past-the-ngrok-visit-site-page) in the readme on how to use (in this case) Cloudflare Tunnel with Shopify CLI v3, bypassing the ngrok command used by the CLI itself. Other...

@avtans-kumar-shipsy Sorry I didn't see this comment until now ... with v6 you can create two different instances as follows: ```js const shopify1 = shopifyApi({config for 1}); const shopify2 =...

The original issue was fixed in June 2022 and released as part of `3.1.2` on June 7 ... the [code](https://github.com/Shopify/shopify-api-js/blob/v5/src/clients/http_client/http_client.ts#L186) has been carried forward through all releases to `v5.3.0`. In...