Advanced
Preparation
Remember, you need to configure and initialize the Magify Service to work with purchases and subscriptions.
Overview
Advanced Magify SDK integration gives you complete control over your InApp and Subscription purchases.
In this case, the entire shopping experience: uploading, purchasing and processing is the responsibility of the Magifi SDK. By default we have integration with Unity Purchases.
In case you want to customize integration with other libraries for in-game purchases you can implement the interface IInAppStore and pass it to Magify via MagifyService.SetPurchasingProvider.
Usage
The easiest (but not the best) option for working with purchases through the Magify SDK is to use MagifyService.Purchaser
.
First, you can get a list of products configured for Magify using InAppProducts and SubscriptionProducts.
Then you can prepare one or more products before purchasing via PrepareProductAsync to prepare the current InAppStore instance for purchasing of the product(s).
Once the products have been successfully prepared you can initiate the purchase of a product using PurchaseProductAsync.
After finishing this operation you can process the error in case of failure or process the purchased product and charge bonuses to the user.
However, in this way of working, you need to perform many additional operations for the SDK to handle purchases and subscriptions correctly and collect analytics. Therefore, it is usually better to realize the purchase of products through a campaigns system. In this case, we have already implemented a lot of logic to simplify your shopping experience.