andeedee / gapi-google-analytics-php-interface

Automatically exported from code.google.com/p/gapi-google-analytics-php-interface
0 stars 0 forks source link

processFilter not prepending ga: across all filter expressions #90

Open GoogleCodeExporter opened 9 years ago

GoogleCodeExporter commented 9 years ago
Given a filter string of"

customVarValue1=~^/(tip|story)/[0-9]+;customVarValue2==1

I expect this (before URL encoding):

ga:pagePath=~^/(tip|story)/[0-9]+\;ga:customVarValue2==1

I get this instead:

ga:pagePath=~^/(tip|story)/[0-9]+\;customVarValue2==1

If I change my filter string to include "ga:" before "customVarValue2" the 
filter looks correct, but I still get no results. However, I do get results 
using the same filter (and other) parameters in the Google Analytics Query 
Explorer.

Original issue reported on code.google.com by jdand...@gmail.com on 2 Jan 2013 at 8:56

GoogleCodeExporter commented 9 years ago
Note that customVarvalue1 should be pagePath in the first string.

Original comment by jdand...@gmail.com on 2 Jan 2013 at 8:56