My site has user profiles that are accessible via URLs that look like this: www.domain.com/profile/123/.... I want to show users page view statistics of their profiles, but need to be able to do wildcards.

For example, this works:

filters=ga:pagePath==/profile/123/

The problem is that there are potentially other URI segments that follow /profile/123/. I want to do something like this (does not work):

filters=ga:pagePath==/profile/123/*

Suggestions?

link|improve this question

feedback

2 Answers

up vote 2 down vote accepted

Use the 'Contains a match for the regular expression' operator (~) from the Dimension Filters.

filters=ga:pagePath=~/profile/123/*
link|improve this answer
your link is not good... can we do ~/*/view/* ? – VinnyG Apr 25 at 16:56
feedback

worked for me.

    
    require('gapi.class.php');
    $ga = new gapi('mail@example.com','google_analytics_password');
    $filter = 'ga:pagePath==/home.php';

    //first parameter is your Google Analytics profile id

    /* How to find Google Analytics Profile ID
    http://stackoverflow.com/questions/4119610/get-google-analytics-id-from-the-code-embed/4120625#4120625
    */
    $ga->requestReportData(0000000,array('pagePath'),array('pageViews','UniquePageviews'), '-pageViews', $filter);

    foreach($ga->getResults() as $result)
    {
        echo $result->getPageviews();
        echo $result->getUniquePageviews();
        echo $result->getPagePath();
    }
    ?>
link|improve this answer
GAPI Class (Google Analytics PHP Interface) code.google.com/p/gapi-google-analytics-php-interface – Tag Mar 16 '11 at 13:48
How to find Google Analytics Profile ID stackoverflow.com/questions/4119610/… – Tag Mar 16 '11 at 14:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.