Google analytics hits.page.searchKeyword不';不匹配搜索页面url

Google analytics hits.page.searchKeyword不';不匹配搜索页面url,google-analytics,google-bigquery,Google Analytics,Google Bigquery,仍然在玩BigQuery google_analytics_示例数据和演示商店网站 当我在google商品商店搜索产品时,页面搜索URL如下所示/asearch.html vid=2016051252&key=cool&keyword=cool 但是,在运行以下查询时: SELECT hits.page.searchKeyword as Search, hits.page.pagePath, hits.page.pageTitle FROM `bigquery-public-data.goog

仍然在玩BigQuery google_analytics_示例数据和演示商店网站

当我在google商品商店搜索产品时,页面搜索URL如下所示
/asearch.html vid=2016051252&key=cool&keyword=cool

但是,在运行以下查询时:

SELECT
hits.page.searchKeyword as Search,
hits.page.pagePath,
hits.page.pageTitle 
FROM
`bigquery-public-data.google_analytics_sample.ga_sessions_20170801` AS GA,
UNNEST(GA.hits) AS hits
where
hits.page.searchKeyword IS NOT NULL
对于每次搜索,页面路径和页面标题都是
/home
home

hits.page.searchKeyword
的定义是

如果这是搜索结果页面,则这是输入的关键字。


所以看一下定义,我会假设返回的
页面路径
值将是搜索结果页面的url否?我错过了什么

在视图设置中,他们选中了“从URL中删除查询参数”选项,这样它们就不会显示为路径的一部分。请参见

查询参数是一回事,但页面路径或页面标题是另一回事。