如何检测应用内的 iOS 应用安装活动

How to detect an iOS app install campaign inside the app

我想我的iOS应用程序中找出该应用程序是否是由于广告活动link而安装的。 Google Analytics 正在这样做,并在他们的分析网页上进行了跟踪。 iTunes Connect 也在这样做,它也在 iTC 网页上进行了跟踪。 我现在正在寻找一种方法来 应用程序中获取此信息。当应用程序首次启动时,我想检查它是否已安装,因为用户是通过活动 link 发送到 App Store 的,以及它是什么活动 ID。 有没有办法让 iOS 应用程序询问 Google Analytics、Firebase 或 iTC/StoreKit 是什么活动导致了它的安装?

Google Anlaytics 在用户安装应用程序后使用用户设备的 IDFA 作为标识符,即当用户点击广告时,他们将被重定向到 google analytics,在那里他们收集用户的 IDFA 并重定向用户到 iTunes。一旦用户安装了应用程序,他们就会将保存的 IDFA 与用户的 IDFA 进行匹配,如果匹配,他们就会将该用户标记为已归因。

我查看了 Google Analytics docs,以查找有关 google 在用户安装应用程序后如果有匹配项可能会提供的回调信息。不幸的是,我找不到任何东西。

但问题是,在 iOS 10 之后,我认为这种方法现在根本不起作用。Apple 为用户提供了 Limit Ad Tracking from sometime now but on iOS 10, if a user has enabled it, the IDFA API returns 这样的数字:00000000 -0000-0000-0000-000000000000

你可以想象你现在无法使用 IDFA 匹配用户。

另一方面,还有其他方法可以为 iOS 设备进行指纹匹配。它不是很准确,但大部分时间都有效。

我已经使用 branch.io 进行延迟深度 linking 并且它有效。你也可以看看他们提供的解决方案。他们有一个回调,您可以实施回调并了解 link 您的应用程序是从哪里安装的。

看起来 Adjust 可以做到这一点:

Adjust 说它在 IDFA 不可用时使用指纹识别 https://docs.adjust.com/en/getting-started/#tracking-installs

根据https://docs.adjust.com/en/callbacks/#best-practice-accessing-adjust-attribution-data-externallyhttps://partners.adjust.com/placeholders/ Adjust SDK 似乎允许应用访问其数据,包括安装活动名称。

如果真的有效,我稍后会发表评论。

我从 Adjust 那里得到了答复:

yes it is possible with the Adjust SDK to attribute installs to the source which drove that install.

By setting up campaign parameter structure to the tracker URL, you can actually find out the the Network Name, Campaign Name, Adgroup Name and Creative Name.

For your reference here is the guide to setup campaign parameter structures -> https://docs.adjust.com/en/tracker-generation/#planning-your-tracker-structure