应用什么时候会收到内容为utm_source=(not%20set)&utm_medium=(not%20set)的install_referrer?

When will the application receive a install_referrer with content utm_source=(not%20set)&utm_medium=(not%20set)?

我正在使用 instll_referrrer 跟踪用户安装。最近,我发现很多用户向我的服务器发送引用utm_source=(not%20set)&utm_medium=(not%20set)

我在 Google 上搜索了这个,找到了一篇文章 https://plus.google.com/+AndroidDevelopers/posts/E54ae9beKLB,它告诉我这将被设置为深度链接用户的默认设置。然后我搜索了deeplink的定义,但我不太明白。

From now on, if there is no referrer parameter in the URL, a default will be set to separate organic installs from deeplinks (i.e. a third party referral to your Play Store listing).

这意味着如果我收到一些内容为 content utm_source=(not%20set)&utm_medium=(not%20set) 的 install_referrer,发送这些引荐来源网址的用户已通过格式类似于 {scheme}://{host_path} 的第三方引荐安装了我的应用程序?

文档指出它仅在您使用 Play 商店的深层链接 (http) 时发生:

For a deep link into Google Play where the referrer parameter is not present or empty, the referrer value provided is:

utm_source=(not%20set)&utm_medium=(not%20set)

例如:

https://play.google.com/store/apps/details?id=com.google.android.apps.maps

此处的文档:https://developers.google.com/app-conversion-tracking/third-party-trackers/android

您的 URL 需要一个 "referrer" 参数,并在其中对您的引荐来源网址进行编码。一个例子是

https://play.google.com/store/apps/details?id=a&referrer=utm_source%3Dgoogle%26utm_medium%3Dcpc%26anid%3Dadmob

您可以尝试使用此https://developers.google.com/analytics/devguides/collection/android/v4/campaigns创建示例。

应用程序不会将来自 Google 和 Facebook 的引荐来源网址传递给商店。

所以你得到utm_source=(not%20set)&utm_medium=(not%20set)

Google play store 检查所有登录 Google play 的邮件帐户,如果您使用工作电子邮件(企业域电子邮件 id)登录,它会设置 UTM 属性 作为utm_source=(not%20set)&utm_medium=(not%20set).

因此请尝试从 google Play 商店中删除工作电子邮件并进行验证。

使用 Google Play URL Builder 生成活动 URL。

对我有用