David Barel
David Barel

Reputation: 285

Access Shopify API from an External App

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

Answers (1)

David Barel
David Barel

Reputation: 285

I have found the answer. Follow these steps if you want to access the Shopify API from an external app:

  1. Login to your store as an admin
  2. Go to Apps
  3. Create a Private App
  4. 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

Related Questions