full mode
This section describes how to process transactions in full mode
General principles
In full
mode, the Purchasely SDK automatically launches the native in-app purchase flow when a user clicks on a purchase button and automatically handles the transaction.
In other words, you have nothing to do to manage the transaction and associated receipt, the SDK manages everything.
The only thing you will have to do is to update the entitlements once you have the confirmation that the purchase has been processed.
Implementation
After displaying a placement, you get the result
of the user action on the paywall.
Cancelled
: User did not purchase a planRestored
: User restored a previous purchased planPurchased
: User purchased a plan and the transaction was properly processed
You also have as a second argument the plan
bought by the user, it is set to nil
if no purchase was made.
let paywallCtrl = Purchasely.presentationController(
for: "my_placement_id",
contentId: "my_content_id",
completion: { (result, plan) in
switch result {
case .purchased:
print("User purchased: \(plan?.name)")
// update entitlements to unlock the access to the contents
break
case .restored:
print("User restored his purchases")
// update entitlements to unlock the access to the contents
break
case .cancelled:
break
@unknown default:
break
}
})
val paywallView = Purchasely.presentationViewForPlacement(
context,
placementId = "onboarding",
onClose = {
//TODO remove view from layout hierarchy
},
) { result, plan ->
when(result) {
PLYProductViewResult.PURCHASED -> Log.d("Purchasely", "User purchased ${plan?.name}")
PLYProductViewResult.CANCELLED -> Log.d("Purchasely", "User cancelled purchased")
PLYProductViewResult.RESTORED -> Log.d("Purchasely", "User restored ${plan?.name}")
}
}
//TODO add paywallView to layout hierarchy
try {
const result = await Purchasely.presentPresentationForPlacement({
placementVendorId: 'onboarding',
isFullscreen: true,
});
switch (result.result) {
case ProductResult.PRODUCT_RESULT_PURCHASED:
case ProductResult.PRODUCT_RESULT_RESTORED:
if (result.plan != null) {
console.log('User purchased ' + result.plan.name);
// update entitlements to unlock the access to the contents
}
break;
case ProductResult.PRODUCT_RESULT_CANCELLED:
break;
}
} catch (e) {
console.error(e);
}
try {
var result = await Purchasely.presentPresentationForPlacement(
"onboarding",
isFullscreen: true);
switch (result.result) {
case PLYPurchaseResult.purchased:
print('User purchased: ${result.plan?.name}');
// update entitlements to unlock the access to the contents
break;
case PLYPurchaseResult.restored:
print('User restored his purchases');
// update entitlements to unlock the access to the contents
break;
case PLYPurchaseResult.cancelled:
print("User cancelled purchased");
break;
}
} catch (e) {
print(e);
}
Purchasely.presentPresentationForPlacement(
'onboarding', //placementId
null, //contentId
true, //fullscreen
(callback) => {
if(callback.result == Purchasely.PurchaseResult.PURCHASED) {
console.log("User purchased " + callback.plan.name);
// update entitlements to unlock the access to the contents
} else if(callback.result == Purchasely.PurchaseResult.RESTORED) {
console.log("User restored his purchases");
// update entitlements to unlock the access to the contents
} else if(callback.result == Purchasely.PurchaseResult.CANCELLED) {
console.log("User cancelled purchased");
}
},
(error) => {
console.log("Error with purchase : " + error);
}
);
private PurchaselyRuntime.Purchasely _purchasely;
_purchasely.PresentPresentationForPlacement(
'onboarding',
OnPresentationResult,
OnPresentationContentLoaded,
OnPresentationContentClosed,
'contentId',
true
);
private void OnPresentationResult(ProductViewResult result, Plan plan)
{
Log($"Presentation Result: {result}.");
switch(result) {
case ProductViewResult.Purchased:
Log($"Purchased Plan: {plan.name}.");
break;
case ProductViewResult.Restored':
Log($"Restored purchases");
break;
case ProductViewResult.Cancelled:
Log($"Nothing happened");
break;
}
}
Once you get the information that the purchase has been processed, you can update the entitlements to unlock the access to the premium contents
Updated 6 months ago