我需要将自己的参数作为url的一部分。 (例如#student = DD& start = Date1& end = Date2)。但是,我正在考虑是否将我的部分添加到网址中,它会搞砸我的谷歌分析跟踪吗?基本上,现在我的网址就像 - MywebsiteUrl?userID=AAA#student=DD&start=Date1&end=Date2&utm_source=CC...
。
Google Analytics将跟踪哪些网址?是我的网站网址 - MywebsiteUrl
,或``MywebsiteUrl?userID = AAA#student = DD& start = Date1& end = Date2`?
提前致谢!
答案 0 :(得分:0)
Google Analytics会将查询参数视为网址的一部分。但是,它不会将#student=DD&start=Date1&end=Date2
视为具有查询参数。就(本机)Javascript和GA跟踪代码而言,URL在片段标识符(#
)之后结束。
所以你的完整例子
MywebsiteUrl?userID=AAA#student=DD&start=Date1&end=Date2&utm_source=CC
您将获得MywebsiteUrl?userID=AAA
。如果userID参数包含个人身份信息,则需要将其删除以符合Google的服务条款。您可以在视图设置中使用过滤器或排除参数框。