Reputation: 285
I am trying to access the Shopify API from an external app that I am building (mobile). For example, I would like to access this API:
https://mystore.myshopify.com/admin/products.json
Of course I would need to authenticate my request first. So far everybody I asked (including Shopify support), suggested that the only way to access the data is through a Shopify App.
Can you suggest a way to do this?
Upvotes: 2
Views: 1411
Reputation: 285
I have found the answer. Follow these steps if you want to access the Shopify API from an external app:
Use the following pattern with every URL you create (I am using this to get all the orders)
https://:@.myshopify.com/admin/orders.json
The API Key and the password appear in your private app info page.
Upvotes: 1