Mixpanel
Integrating SessionStack with Mixpanel
Add a SessionStack recording to every Mixpanel user profile.
Add this code anywhere in your app, after SessionStack and Mixpanel have been loaded.
SessionStack.getSessionId(function(sessionId) {
if (sessionId) {
mixpanel.track('SessionStack', {
recording: 'https://app.sessionstack.com/player/#/sessions/' + sessionId,
});
}
});
Updated over 6 years ago