BREAKING API changes to Live.getLastVisitsDetails parameter and output · Issue #3905 · matomo-org/matomo · GitHub
More Web Proxy on the site http://driver.im/
You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
mattab opened this issue
Apr 20, 2013
· 2 comments
Assignees
Labels
CriticalIndicates the severity of an issue is very critical and the issue has a very high priority.TaskIndicates an issue is neither a feature nor a bug and it's purely a "technical" change.
We had to make some changes to the Live.getLastVisitsDetails introducing some API output change:
a site search keyword now appears as siteSearchKeyword --- it used to be called the pageTitle
custom variables of "page" scope now appear as:
names are customVariablePageName1 (it used to be customVariableName1
values are customVariablePageValue1 (it used to be customVariableValue1
The API used to have a parameter 'maxIdVisit' parameter. Now we have made the API easier to use and introduced instead a filter_offset parameter, which can be used instead.
The text was updated successfully, but these errors were encountered:
new API: getSuggestedValuesForSegment which returns top suggested values for a particular segment. It uses the Live.getLastVisitsDetails API to fetch the most recently used values, and will show the most used values first
Adding tests for everything. The test case actually generates data for all segments so that VisitsSummary.get returns some data for each of the 47 segments being tested returns some data.
How it works:
generate extended data in fixture
Tests (1) call getSuggestedValuesForSegment for each segment, check there is some data returned for each segment
get the first suggested value from the list,
Tests (2) call VisitsSummary.get with this segment value, eg. countryCode==ru.
I worked this way for all 47 segments until all tests had some data ==> now we know that all segments have been tested and that the auto suggest works for all segments. TDD FTW!
CriticalIndicates the severity of an issue is very critical and the issue has a very high priority.TaskIndicates an issue is neither a feature nor a bug and it's purely a "technical" change.
We had to make some changes to the Live.getLastVisitsDetails introducing some API output change:
siteSearchKeyword
--- it used to be called thepageTitle
customVariablePageName1
(it used to becustomVariableName1
customVariablePageValue1
(it used to becustomVariableValue1
filter_offset
parameter, which can be used instead.The text was updated successfully, but these errors were encountered: