Getting list of products available from Amazon store for IAP?

Hi. I am updating an older app that uses Amazons inapp purchasing plugin code and am switching it to use Unity’s IAP. I would like to do the following:

Instead of using ConfigurationBuilder to add products at runtime (which I must know in advance) I want to query Amazons store for a list of available IAP products. Is this possible using Unity3D IAP? It doesn’t seem so.

So imagine I have a set of IAP products that I created in Amazon’s store:

com.somecompany.somegame.100
com.somecompany.somegame.abcd

com.somecompany.somegame.XYZ

and I want the Unity3D code to retrieve these and use them instead of me trying to predefine these in code like all the examples I see which use builder.AddProduct(“com.somecompany.somegame.removeads”). This way I can dynamically add and remove products in Amazon’s store without having to update my game.

thanks in advance.

Jay

Same problem