我有url builder生成的游戏商店链接。要跟踪推荐我的应用的引荐来源,我已按照official docs中的说明实施了广告系列衡量。 但如果已安装该应用程序,我不知道如何解析该网址。根据官方的例子:
// 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.
String campaignData = "http://examplepetstore.com/index.html?" +
"utm_source=email&utm_medium=email_marketing&utm_campaign=summer" +
"&utm_content=email_variation_1";
我不确定如何将url数据读入intent。我应该使用deeplink来解析我的Play-store URL吗?