Subscription status

Purchasely offers a way to retrieve active subscriptions directly from your mobile app without calling your own backend.

This API is built for heavy usage and high availability and can be called on your app startup to check for subscriber status.

Purchasely.userSubscriptions(success: { (subscriptions) in
	// Subscription object contains the plan purchased and the source it was purchased from (iOS or Android)
	// Calling unsubscribe() will either switch the user to its AppStore settings 
	// or display a procedure on how to unsubscribe on Android
}, failure: { (error) in
	// Display error
})

If you consider using that feature intead of doing the backend integration your self, be aware that this approach is limited.

First of all, this approach can only be used if 1- Your app doesn't sell consumables 2- The content / service is blocked by the app 3- All your subscribers are handled by Purchasely, you don't have a Web payment or Web site where your users could purchase or use your service.\

Then, you should be aware that it is less secured than checking with your server. If your device obfuscates the content or block the features based on a server info telling you are subscribed, if this info is altered by a third party you would be offering the content. This is exactly the case of a man in the middle approach. The most secured approach remains handling the subscription with your backend and send the right amount of data depending on the status.

Last updated

© Purchasely 2020-2023