Access a community of over 900,000 Shopify Merchants and Partners and engage in meaningful conversations with your peers.
can i build shopify store using vue js
i am using this code in vuejs
axios.get('/shopify', (req, res) => {
const state = nonce()
const store = this.step4.shopifyStore
const redirectUrl = config.shopifyForwardUri + '/shopify/callback'
const installUrl = 'https://' + store + '/admin/oauth/authorize?client_id=' + config.shopifyApi + '&scope=' + config.shopifyScope + '&redirect_uri=' + redirectUrl + '&state=' + state
res.redirect(installUrl)
})
but i received 404 error nd in server side i am using nodejs so can i do this in node js
do you have any example ?? because i don't know how to perform this
i follow this but i am working on linux that's why i can understand