Utility methods

Dashboard session URL

A URL leading to the Smartlook Dashboard for a currently recorded session can be obtained like this:

class func getDashboardSessionURL(withCurrentTimestamp withTimestamp: Bool) -> URL?
+ (nullable NSURL *)getDashboardSessionURLWithCurrentTimestamp:(BOOL)withTimestamp;

If withCurrentTimestamp is set to true link it will include information about the current recording timestamp. This will ensure that the player will start playing the session at the moment when getDashboardSessionUrl was called.

🚧

This URL can be opened only by someone who has access to your dashboard. This is not a public shareable link.

Dashboard visitor URL

A URL leading to the Smartlook Dashboard for a currently recorded visitor can be obtained like this:

class func getDashboardVisitorURL() -> URL?
+ (nullable NSURL *)getDashboardVisitorURL;

🚧

This URL can be opened only by someone who has access to your dashboard. This is not a public shareable link.