Reputation: 56
We have a Facebook Ad for installing a mobile application. The link on the ad points to following:
After the installation when the user opens the app we want to track this FBCLID information. Is there a way to detect it in Flutter Application?
Upvotes: 4
Views: 1079
Reputation: 1395
Please check this article on medium. It tracks the UTM params in Android and for iOS apps I have used with AppsFlyer integration.
Note: You can use AppsFlyer in Android too try to
use -
appsflyer_sdk: ^6.5.2+2
use -
registerConversionDataCallback: true
Your generated url should have referrer key used to track down url params in Android.
https://play.google.com/store/apps/details?id=com.yourpackage&referrer=utm_source%3Dgoogle%26utm_medium%3Dbanner%26utm_term%3Dshorts%26utm_content%3D500-off%26utm_campaign%3Dflat-50%26anid%3Dadmob
Upvotes: 1