How to search products in Shopify API?

I am familiar with the Shopify document, but I cannot find how to search for a product, does anyone have any ideas? I looked through the document http://docs.shopify.com/api/product , but did not find anything.

+4
source share
1 answer

One way to achieve this is to use a client such as a postman. Once you have the access token for Shopify access in the correct ie header X-Shopify-Access-Token: {access_token}, you can achieve this as follows:

First, take the URL of your store in the following format:

exampleshop.myshopify.com/admin/products/#{id}.json

Then, instead of #{id}entering the idproduct you want to find. This will return the full JSON of this particular product.

URL-, , .

, access_token, , . , , .

+1

All Articles