You can record App Store and Play Store subscriptions and verify their validity with the Adjust SDK. After the user purchases a subscription, create an AdjustAppStoreSubscription
or AdjustPlayStoreSubscription
instance containing the details.
1. Instantiate a subscription object
To get started, you need to create a subscription object containing details of the subscription purchase.
AdjustAppStoreSubscription ( String _price, String _currency, String _transactionId, String _receipt)
Create an AdjustAppStoreSubscription
object with the following properties:
Parameter Data type Description price
String
The price of the subscription currency
String
The currency of the subscription. Formatted as the currencyCode
of the priceLocale
object transactionId
String
Your ID for the transaction receipt
String
The receipt information
AdjustAppStoreSubscription subscription = new AdjustAppStoreSubscription (
AdjustPlayStoreSubscription ( String _price, String _currency, String _sku, String _orderId, String _signature, String _purchaseToken)
Create an AdjustPlayStoreSubscription
object with the following properties:
Parameter Data type Description price
String
The price of the subscription currency
String
The currency of the subscription sku
String
The ID of the product orderId
String
Your ID for the transaction signature
String
The signature of the purchase data purchaseToken
String
The unique token of the transaction. See Google’s documentation for more information
AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription (
Record the purchase date
You can record the date on which the user purchased a subscription. The SDK returns this data for you to report on.
void setTransactionDate ( String _transactionDate)
Call the setTransactionDate
method on your subscription object to record the timestamp of the subscription.
AdjustAppStoreSubscription subscription = new AdjustAppStoreSubscription (
subscription. setTransactionDate (transactionDate);
void setPurchaseTime ( String purchaseTime)
Call the setPurchaseTime
method on your subscription object to record the timestamp of the subscription.
AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription (
subscription. setPurchaseTime (purchaseTime);
Record the purchase region (iOS only)
void setSalesRegion ( String _salesRegion)
You can record the region in which the user purchased a subscription. To do this, call the setSalesRegion
method on your subscription object and pass the country code as a String
. This needs to be formatted as the countryCode
of the priceLocale
object.
AdjustAppStoreSubscription subscription = new AdjustAppStoreSubscription (
subscription. setSalesRegion (salesRegion);
Add callback parameters
You can add callback parameters to your subscription object. The SDK appends these parameters to your callback URL. To add callback parameters, call the addCallbackParameter
method on your subscription object. You can add multiple callback parameters by calling this method multiple times.
void addCallbackParameter ( String key, String value)
AdjustAppStoreSubscription subscription = new AdjustAppStoreSubscription (
subscription. addCallbackParameter ( 'key1' , 'value1' );
subscription. addCallbackParameter ( 'key2' , 'value2' );
void addCallbackParameter ( String key, String value)
AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription (
subscription. addCallbackParameter ( 'key1' , 'value1' );
subscription. addCallbackParameter ( 'key2' , 'value2' );
Add partner parameters
You can add partner parameters to your subscription object. The SDK sends these to Adjust’s servers when the user purchases a subscription. Adjust’s servers forward the information on to your network partner. To add partner parameters, call the addPartnerParameter
method on your subscription object. You can add multiple partner parameters by calling this method multiple times.
void addPartnerParameter ( String key, String value)
AdjustAppStoreSubscription subscription = new AdjustAppStoreSubscription (
subscription. addPartnerParameter ( 'key1' , 'value1' );
subscription. addPartnerParameter ( 'key2' , 'value2' );
void addPartnerParameter ( String key, String value)
AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription (
subscription. addPartnerParameter ( 'key1' , 'value1' );
subscription. addPartnerParameter ( 'key2' , 'value2' );
Once you have set up your subscription object, you can record it using the Adjust SDK.
static void trackAppStoreSubscription ( AdjustAppStoreSubscription subscription)
Pass your subscription object to the trackAppStoreSubscription
method to record the user’s subscription purchase.
AdjustAppStoreSubscription subscription = new AdjustAppStoreSubscription (
subscription. setTransactionDate (transactionDate);
subscription. setSalesRegion (salesRegion);
subscription. addCallbackParameter ( 'key1' , 'value1' );
subscription. addCallbackParameter ( 'key2' , 'value2' );
subscription. addPartnerParameter ( 'key1' , 'value1' );
subscription. addPartnerParameter ( 'key2' , 'value2' );
Adjust . trackAppStoreSubscription (subscription);
static void trackPlayStoreSubscription ( AdjustPlayStoreSubscription subscription)
Pass your subscription object to the trackPlayStoreSubscription
method to record the user’s subscription purchase.
AdjustPlayStoreSubscription subscription = new AdjustPlayStoreSubscription (
subscription. setPurchaseTime (purchaseTime);
subscription. addCallbackParameter ( 'key1' , 'value1' );
subscription. addCallbackParameter ( 'key2' , 'value2' );
subscription. addPartnerParameter ( 'key1' , 'value1' );
subscription. addPartnerParameter ( 'key2' , 'value2' );
Adjust . trackPlayStoreSubscription (subscription);