Wistia videos not tracked despite successful API response

Anonymous
Not applicable

Wistia videos not tracked despite successful API response

Our Youtube videos are tracked properly with a querystring ?video=play,stop,pause,end.

however, this technique is not working with Wistia videos despite a successful API response.
the Wistia. the video is here on the homepage:
similar.graystyle.hu/knowledgebase/

Here's the succesfful response, it's not registered in the user's activity log, any idea why?

http://891-vey-973.mktoresp.com/webevents/visitWebPage?_mchNc=1408639066762&_mchRu=&_mchQp=video%3Dp...
Tags (1)
3 REPLIES 3
Anonymous
Not applicable

Re: Wistia videos not tracked despite successful API response

A couple things to check:
  • Are you sure the call is actually firing for the lead?
  • Are you sure you're checking the right lead in Marketo?
  • If you manually make a visit web page call from the console is that working for you?
Anonymous
Not applicable

Re: Wistia videos not tracked despite successful API response

When I look in the console on the page you linked to, I am getting a 200 status from Marketo, and I can't spot any errors in the code.

Was the code below provided by Wistia? 

<script>
  wistiaEmbeds.onFind(function(video){
    video.bind("play", function(){
        var a= Munchkin.munchkinFunction('visitWebPage', {
            url: '',
            params: 'video=play'
        });
        _paq.push(['trackPageView', 'Video-play']);
      return this.unbind;
    }).bind("end", function(){
        var a= Munchkin.munchkinFunction('visitWebPage', {
            url: '',
            params: 'video=end'
        });
        _paq.push(['trackPageView', 'Video-end']);
      return this.unbind;
    });
  });
</script>
 
Anonymous
Not applicable

Re: Wistia videos not tracked despite successful API response

Alright we managed to solve it, the URL parameter wsa not delivered for some reason, only the query parameter.
tx