Install widget

To install the NeetoReplay widget, follow the below steps:

  1. Copy the embed code. You can find the embed code at my-organization.neetoreplay.com > Settings > Widget Settings > Installation.

  2. Place the embed code inside HTML page. If you are installing NeetoReplay on a website with multiple HTML pages, make sure to paste the embed code on every page.

That's it! You have successfully installed NeetoReplay on your website. Refresh the page to get NeetoReplay to start recording the activity on the website.

All other checked neeto widgets are also embedded when you install the embed code. If you want to disable any specific widget, you can disable it from the installation page.

User identity (Optional)

Pass in the email of the current user in window.NeetoWidgetUserIdentity.email. This will associate the sessions with the users using their email addresses and allow you to view sessions for any given user. If no email is provided, the user is marked as Anonymous.

Example:

window.NeetoWidgetUserIdentity = {
  email: "[email protected]"
}

Session context (Optional)

You can save custom values using window.NeetoReplayWidgetSessionContext. These values will be associated with the current session. You can later filter sessions by the values stored here.

Constraints:

  1. The context object can have only String type keys.

  2. Only String and Array[String] values can be stored in the context object.

  3. The context object should not exceed 2048 bytes in size. The size is measured using "JSON.stringify(context).length".

Example:

window.NeetoReplayWidgetSessionContext = {
  key1: "string",
  key2: ["array", "of", "strings"],
  /* More key value pairs */
}

The values for both, user email and session context, need to be set before the session starts recording. Otherwise, they will not be associated with the session.

Can't find what you're looking for?