There are three methods for installation Session Rewind, all of which can be found here. You can also request that an email be sent to your webmaster with installation instructions.

iframes

Session Rewind supports recording iframes embedded on your site, with seamless playback of the full user experience. For security reasons, however, some configuration is required to “opt-in” a page for iframe recording.

In the containing page

Within the page that embeds the iframe(s), each iframe must have the data-sr-iframe attribute applied to it, in other words, your embed be of the form:

<iframe src="path/to/your/iframe" data-sr-iframe />

In the iframe

Each embedded page must additionally include the Session Rewind recording snippet (found here). In addition, a configuration property iframe must be present and set to true. In other words, your configuration should be:

{
	apiKey: "your-api-key",
	iframe: true
}

Please note that pages with iframe: true should not have any other configuration options set, as all information (such as userId) will be derived from the parent/containing page.

Additionally, some SDK methods such as identifyUser are unavailable within the embedded page. We recommend only using the SDK from within the main page.

Nested iframes

"Nested" iframes (iframes within iframes) are not currently supported.