I’m building a Shopify app that integrates with multiple sales channels, and I need to fetch products associated with specific sales channels using the Storefront API.
Currently, I can get products published to the Online Store sale channel using the Storefront API with an access token that I generate with the admin graphql API and using the products query. But with this setup I don’t get any products that are exclusive to other sales channels.
Am I correct to assume that the products returned by the Storefront API depend on the access token that was used?
If not, how could I control the sale channel scope in my products query.
If yes,
Is it possible to generate a Storefront access token tied to a specific sales channel (e.g., Shopify POS), so that I can retrieve products published to that channel instead of just the Online Store?
Any clarification on how to use Storefront API get products from specific sales channels is appreciated!