Development discussions around Shopify APIs
New to Shopify apps. Wondering how to collect the exported orders IDs from a bulk action link that is sent to my embedded app (created following Shopify's Node, React and GraphQL tutorial). Thanks
Solved! Go to the solution
This is an accepted solution.
They're appended as URL parameters, for example:
https://some-app.com?shop=...&ids[]=1234&ids[]=1235
To read these in your Koa app, look inside ctx.query:
router.post('/example', (ctx) => { console.log(ctx.query) })
Scott | Developer Support @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit Shopify.dev or the Shopify Web Design and Development Blog
This is an accepted solution.
They're appended as URL parameters, for example:
https://some-app.com?shop=...&ids[]=1234&ids[]=1235
To read these in your Koa app, look inside ctx.query:
router.post('/example', (ctx) => { console.log(ctx.query) })
Scott | Developer Support @ Shopify
- Was my reply helpful? Click Like to let me know!
- Was your question answered? Mark it as an Accepted Solution
- To learn more visit Shopify.dev or the Shopify Web Design and Development Blog
thanks!
Iam new here
where should we use this script (inside which file ), is there more detailed examples ?
User | RANK |
---|---|
10 | |
4 | |
3 | |
3 | |
3 |
As a business owner, have you ever wondered when your customer's first impression of yo...
By Skye Jun 6, 2023We're excited to announce improvements to the threaded messaging experience in our communi...
By TyW May 31, 2023Thank you to everyone who participated in our AMA with Klaviyo. It was great to see so man...
By Jacqui May 30, 2023