I'm using this URL builder to configure GA Android campaign tracking: https://developers.google.com/analytics/devguides/collection/android/devguide#google-play-builder
我正在使用此网址构建器来配置GA Android广告系列跟踪:https://developers.google.com/analytics/devguides/collection/android/devguide#google-play-builder
The URL that it generates uses standard scheme: https://play.google.com/store/apps/details?id=com.mysite.myapp...
它生成的网址使用标准方案:https://play.google.com/store/apps/details?id = com.mysite.myapp ...
Using this style URL gives customers the choice of opening in their browser vs. play store, where as market://details?id=com.mysite.myapp...does not (our preferred UX).
使用此样式URL,客户可以选择在浏览器和游戏商店中打开,其中market:// details?id = com.mysite.myapp ...不是(我们首选的UX)。
Question: Can anyone confirm that this market:// URL will work with GA campaign tracking as well? I'm testing this, but the tracking is unreliable for me and I don't have confidence in the results I'm seeing. I hope Google is going to improve this feature.
问题:任何人都可以确认此市场:// URL也适用于GA广告系列跟踪吗?我正在测试这个,但跟踪对我来说是不可靠的,我对我看到的结果没有信心。我希望谷歌能够改进这项功能。
market://details?id=com.mysite.myapp...
1 个解决方案
#1
0
Using the market://
scheme will work with Google Analytics campaign tracking. You can use the GA URL builder and just replace the scheme with market://
.
使用market:// scheme将与Google Analytics广告系列跟踪一起使用。您可以使用GA URL构建器,只需将该方案替换为market://。
The &referrer
param on that link, if you include one, will be passed to your application on install as a string extra with the INSTALL_REFERRER
intent, regardless of whether you use https://
or market://
scheme.
该链接上的&referrer参数(如果包含一个)将在安装时以INSTALL_REFERRER意图的字符串传递给您的应用程序,无论您使用的是https://还是market:// scheme。
GA will use that referrer string for campaign tracking.
GA将使用该引荐来源字符串进行广告系列跟踪。
Understood that you prefer to use market://
, but wanted to put out to others who may read this that the market://
scheme is officially deprecated, in favor of https://
.
理解你更喜欢使用market://,但是想要向其他可能读到这一点的人推断出market://方案已被正式弃用,有利于https://。
#1
0
Using the market://
scheme will work with Google Analytics campaign tracking. You can use the GA URL builder and just replace the scheme with market://
.
使用market:// scheme将与Google Analytics广告系列跟踪一起使用。您可以使用GA URL构建器,只需将该方案替换为market://。
The &referrer
param on that link, if you include one, will be passed to your application on install as a string extra with the INSTALL_REFERRER
intent, regardless of whether you use https://
or market://
scheme.
该链接上的&referrer参数(如果包含一个)将在安装时以INSTALL_REFERRER意图的字符串传递给您的应用程序,无论您使用的是https://还是market:// scheme。
GA will use that referrer string for campaign tracking.
GA将使用该引荐来源字符串进行广告系列跟踪。
Understood that you prefer to use market://
, but wanted to put out to others who may read this that the market://
scheme is officially deprecated, in favor of https://
.
理解你更喜欢使用market://,但是想要向其他可能读到这一点的人推断出market://方案已被正式弃用,有利于https://。