Get CustomVariableValues

Hey guys,

I am searching since a few days but I can’t find any help on this issue. In my java-code I send a request to piwik where I set the some custom variables (userID and URL). And in my analytics Controller i want to list every URL from that specific user.

Here is a example for better understanding:

// Request to my piwik server
piwikRequest = new PiwikRequest(2, new URL(“http://someURL.com”));
piwikRequest.setUserCustomVariable(“userID”, “user1”);
piwikRequest.setUserCustomVariable(“urlToTrack”, “http://someURL.com”);

And in my analytics controller I want to retrieve all urls (urlToTrack) for the user “user1”.

How do I achieve this? Anyone an idea? Any help would be appreciated.

Thanks in advice,
cse