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