Hi, So i’m going to use shopify as a storage for my products, I’m going to retrieve them by API in my .net app, I’ve created custom shopify app for it, retrieved access token and all seems to work as expected.
Except the recommendation endpoint, I’d like shopify to also return a recommended products for given product but when I call recommendation endpoint it returns me “forbidden”.
Here the endpoint that I’m trying to call:
string apiUrl = $“{usersMyShopifyUrl}recommendations/products.json?product_id={product.Items.FirstOrDefault().Id}”;