iOS - Observer Mode
If you have a functioning subscription system and want to give Adapty SDK a quick try, you can use Observer mode. With just one line of code you can:
- get insights by using our top-class analytics;
- send subscription events to your server and 3rd party services;
- view and analyze customers in Adapty CRM.
Important
When running in Observer mode, Adapty SDK won't close any transactions, so make sure you're handling it.
Activating Observer Mode
Adapty SDK will automatically collect all transactions and will be sending subscription events. To turn on Observer mode, just set observerMode
to true
when activating Adapty.
Adapty.activate("PUBLIC_SDK_KEY", observerMode: true, customerUserId: "YOUR_USER_ID")
// And at any purchase or restore in your application
Adapty.restorePurchases { result in
switch result {
case .success:
// successful restore
case let .failure(error):
// handle the error
}
}
A/B tests analytics
In Observer mode, Adapty SDK doesn't know, where the purchase was made from. If you display products using our Paywalls or A/B Tests, you can manually assign variation to the purchase. After doing this, you'll be able to see metrics in Adapty Dashboard.
let transactionId = transaction.transactionIdentifier
let variationId = paywall.variationId
Adapty.setVariationId(variationId, forTransactionId: transactionId) { (error) in
if error == nil {
// successful binding
}
}
Request parameters:
variationId
(required): a string identifier of variation. You can get it usingvariationId
property ofPaywall
transactionId
(required): a string identifier of your purchased transactionSKPaymentTransaction
for iOS
Updated 4 months ago