How can I track campaign retargeting with AppsFlyer?
Yes! Thanks to a quick client-side integration, you will be able to see campaigns opens with AppsFlyer.

2
Adding AppsFlyer data in the push payload
iOS
{
"data":{
"af":{
"pid":"batch_int",
"is_retargeting":"true",
"c":"test_campaign"
}
}
}Android
{
"af":{
"pid":"batch_int",
"is_retargeting":"true",
"c":"test_campaign"
}
}
if (intent != null) { val batchPayload = intent.getBundleExtra(Batch.Push.PAYLOAD_KEY)
val af: String? = batchPayload?.getString("af")
if (batchPayload != null && af != null) {
intent = intent.putExtra("af", af)
}
}PreviousCreating a cross-platform report on Google Analytics using Batch and the Firebase event dispatcherNextHow to connect Batch to AT Internet
Last updated

