Support Tools Integration
val callback = object: OnSessionReplayLinkReady{
override fun onSessionReplayLinkReady(link: String?){
//TODO: Do something with the link
}
}
// or
val callback = {link: String? ->
//TODO: Do something with the link
}
SessionReplay.getSessionReplayLink(callback)
// or
SessionReplay.getSessionReplayLink{link->
//TODO: Do something with the link
}OnSessionReplayLinkReady callback = new OnSessionReplayLinkReady() {
@Override
public void onSessionReplayLinkReady(@Nullable String id) {
//TODO: Do something with the link
}
};
SessionReplay.getSessionReplayLink(callback)
// or
SessionReplay.getSessionReplayLink((String)->{
//TODO: Do something with the link
})Zendesk Example

Send Session URLs as tags:
Intercom Example

Last updated