Commerce Service
Apps can offer premium functionality through licensed subscriptions. Use the commerce
service to identify the products (premium versions) to which a user is subscribed:
getProducts()
Returns the list of products to which the user is subscribed for your app:
Parameters
Type
Description
serviceName (optional)
String
The name of a local application-implemented service. If passed, the productUpdate
event will be fired on that service if the user's product subscriptions change.
This method returns a promise that will be fulfilled with the array of products the user is subscribed to for your app. For each product, the following is returned:
"Premium" is the term used for paid subscription products, while "Standard" represents a freemium app. The name and SKU will be values specified by the application developer when implementing a premium version of their app.
productUpdate
This event is fired when the user's product subscriptions are changed.
Last updated
Was this helpful?