How can I retrieve all products from my online store using Node API?

How can I retrieve all products from my online store using Node API?

dbascans
Visitor
1 0 0
I'm trying to get the products of my shopify store using the shopify Node Api with no luck.
 

I don't want to prompt any OAuth 2.0 authentication just authenticate using secretkey or credentials and get the products to do some reports of them.

 

I have found this previous stackoverflow question, but the solution doesn't work.

 

I'm using shopify-api-node package to make the connection.

 

 

 

const shopify = new Shopify({
    shopName: 'diegotestapp',
    apiKey: 'xxxxxxxxxxxxxxxxx',
    password: 'xxxxxxxxxxxxxxxxxx',
    autoLimit: true
});

const products = await shopify.product.count();

 

 

 

This is giving me an unauthorized message so probably I'm missing something.

All help is welcome.

Regards!

Replies 0 (0)