how to configure piwik-react-router in react app?

757 Views Asked by At

I have react app that need to use piwik. In jquery events were pushed line this _paq.push(['trackEvent', 'Event category', 'event type']); but in react I need to use a separate package https://github.com/joernroeder/piwik-react-router and I try to configure it like in documentation

  piwik = PiwikReactRouter({
    url: this.props.piwikUrl,
    siteId: this.props.piwikSiteId,
  });

but when I send event like this this.piwik.push(['trackEvent', 'Event category', type]); I get 400 error. Maybe I missed some configs?

0

There are 0 best solutions below