我正在尝试设置Campaign Measurement
系统以跟踪用户找到我的应用的位置。我已经实现了第一部分Google Play Campaign Attribution this,但我似乎无法弄清楚如何执行General Campaign & Traffic Source Attribution。
它说:
// In this example, campaign information is set using
// a url string with Google Analytics campaign parameters.
// Note: This is for illustrative purposes. In most cases campaign
// information would come from an incoming Intent.
但我找不到任何指定Bundle
中收到的字符串名称的文档,或者我应该如何检索该网址。我猜它会自动发送到应用程序,但我不是100%我必须检索它。
有什么想法吗?
答案 0 :(得分:1)
每当最终用户点击某个社交网站或电子邮件上的广告时,用户都会点击一个网址,此网址会发送到您的应用意图。
您可以通过活动类中的以下代码来检索此网址:
Intent intent = getIntent();
Uri data = intent.getData();
然后您可以使用setCampaignParamsFromUrl()函数将此数据发送到GA进行跟踪。