如何使用Rails Google Analytics API修复``无效的正则表达式''?

时间:2019-08-23 23:12:40

标签: ruby-on-rails regex google-analytics-api google-api-client

我试图在pagePath过滤器中使用正则表达式,但是即使它是格式正确的正则表达式(我分别对其进行了测试),我也总是收到“错误请求”响应

my_regex = /\/\w{2}\/someword(\/?|\/.+)(\?.*)?$/
filter = "ga:pagePath=~#{my_regex}"

#GAApiClient (V3) execute parameters
'filters' => filter

我也尝试过直接在过滤器字符串中编写正则表达式,但结果相同

filter = "ga:pagePath=~\/\w{2}\/someword(\/?|\/.+)(\?.*)?$"

有一种在过滤器中编写正则表达式的特定方法吗?

有关此主题的google文档不足 https://developers.google.com/analytics/devguides/reporting/core/v3/reference#filters

0 个答案:

没有答案