I use the Microsoft Store API (henceforth "API) for enable user for in-app purchases (Addons).
For example...
public StoreContext storeContext = StoreContext.GetDefault();
GetAppLicenseAsync();
GetAssociatedStoreProductsAsync
...etc...
I have two questions:
Is there an API that lets us identify the unique user; preferably the email id or GUID used by the Store to uniquely identify the user?
The API allows determination of user's currently owned Addons. Is there a way to determine a users past history of Addon ownership?
I have found GetUserCollectionAsync() but it only reflects user's current active purchased Addons. Expired Addons do not appear in this list.
Thank you for your advice.