Amplitude

Integrate UXCam with Amplitude to gather more insights about your events and users’ experience.

Whether you are using Amplitude to follow up your events, analyze your user journey, or track conversions, you can connect it with UXCam to get the context behind each user interaction with your app by attaching your users’ and sessions’ URLs to each Amplitude’s Event. That way you will be able to analyze more in-depth the reason behind the decisions of your users, easily identify bugs, understand what actions specifically led to conversion, and precisely pinpoint roadblocks on your user’s journey.

We highly recommend sending the same Events to UXCam to have more consistency in your data.
Read more about our Event Analytics here →

The following guide explains how to associate a UXCam session URL with Amplitude event enabling you to see a step by step session replay for your every event.

For more information about 3rd party integration and best practices, visit our other 3rd party integration guide.

Integrate With Amplitude:

  1. Set user identity
  2. Track UXCam session
  3. UXCam session URL in Amplitude
  4. Log Amplitude metadata with UXCam

Set User Identity

If your app requires registered user login, we highly encourage you to set user identity for UXCam and Amplitude. By doing so, you can easily filter all the sessions for the user from UXCam user dashboard.

2874
How To Do It:
//Set user identity for amplitude
Amplitude.instance()?.setUserId("[email protected]", startNewSession: false)

//Set user identity for UXCam
UXCam.setUserIdentity("[email protected]")
//Set user identity for amplitude
[[Amplitude instance] setUserId:@"[email protected]" startNewSession:NO];

//Set user identity for UXCam
[UXCam setUserIdentity:@"[email protected]"];
//Set user identity for amplitude
Amplitude.getInstance().setUserId("[email protected]");

//Set user identity for UXCam
UXCam.setUserIdentity("[email protected]")
//Set user identity for amplitude
amplitude.getInstance().setUserId("[email protected]");

//Set user identity for UXCam
RNUxcam.setUserIdentity("[email protected]")
//Set your amplitude instance
final Amplitude analytics = Amplitude.getInstance(instanceName: "project");

//Set user identity for amplitude
analytics.setUserId("[email protected]");

//Set user identity for UXCam
FlutterUxcam.setUserIdentity("[email protected]")

Track UXCam session

You can attach a UXCam session URL to Amplitude on UXCam session start or conditionally when a certain event occurs.

//tracking on session start
UXCam.start(withKey: "APP-KEY", buildIdentifier: nil) { (status) in
    if (status){
        if let sessionURL = UXCam.urlForCurrentSession() {
            Amplitude.instance()?.logEvent("uxcam", withEventProperties: ["session_url" : sessionURL])
        }
        
        if let userURL = UXCam.urlForCurrentUser() {
            Amplitude.instance()?.setUserProperties(["uxcam_url": userURL])
        }
    }
}

//tracking conditionally
if (purchased){
    if let sessionURL = UXCam.urlForCurrentSession() {
        Amplitude.instance()?.logEvent("purchased", withEventProperties: ["uxcam_session_url" : sessionURL])
    }
}
//tracking on session start
[UXCam startWithKey:@"APP-KEY" buildIdentifier:nil completionBlock:^(BOOL started) {
    if (started){
        NSString* sessionURL = [UXCam urlForCurrentSession];
        NSString* userURL = [UXCam urlForCurrentUser];
        
        [[Amplitude instance] logEvent:@"uxcam" withEventProperties:@{ @"session_url": sessionURL }];
        
        [[Amplitude instance] setUserProperties: @{@"uxcam_url": userURL}];
    }
}];

//tracking conditionally
if (purchased) {
    NSString* sessionURL = [UXCam urlForCurrentSession];
    [[Amplitude instance] logEvent:@"purchased" withEventProperties:@{ @"uxcam_session_url": sessionURL }];
}
// Inside onCreate method of all activity that is an entry point to your app add
UXCam.startWithKey("APP-KEY");
UXCam.addVerificationListener(new UXCam.OnVerificationListener() {
    @Override
    public void onVerificationSuccess() {
        //Tag Amplitude events with UXCam recording URLS. Example:
        JSONObject eventProperties = new JSONObject();
        JSONObject userProperties = new JSONObject();
        try {
            eventProperties.put("session_url", UXCam.urlForCurrentSession());
            userProperties.put("uxcam_url", UXCam.urlForCurrentUser());
        } catch (JSONException exception) {
        }
        Amplitude.getInstance().logEvent("uxcam", eventProperties);
        //Tag Amplitude profile with UXCam user URLS. Example:
        Amplitude.getInstance().setUserProperties(userProperties);
    }
    @Override
    public void onVerificationFailed(String errorMessage) { }
});

//tracking conditionally
if (purchased) {
    JSONObject eventProperties = new JSONObject();
    try {
        eventProperties.put("uxcam_session_url", UXCam.urlForCurrentSession());
    } catch (JSONException exception) { }
    Amplitude.getInstance().logEvent("purchased", eventProperties);
}
import { NativeModules, NativeEventEmitter } from 'react-native';
    
RNUxcam.optIntoSchematicRecordings();
RNUxcam.startWithKey("your app key");
    
//Setup listener
const emitter = new NativeEventEmitter(NativeModules.RNUxcam);
//Use this.uxcamEvent.remove() to remove listener
this.uxcamEvent = emitter.addListener('UXCam_Verification_Event', async () => {
    const sessionURL = await RNUxcam.urlForCurrentSession();
    const userURL = await RNUxcam.urlForCurrentUser();
    amplitude.getInstance().logEvent("uxcam", {
        "session_url": sessionURL
    });
    
    amplitude.getInstance().setUserProperties({
        "uxcam_url": userURL
    );
});

//tracking conditionally
if (purchased) {
    const sessionURL = await RNUxcam.urlForCurrentSession();
    amplitude.getInstance().logEvent("purchased", {
        "uxcam_session_url": sessionURL
    });
}
//Set your amplitude instance
final Amplitude analytics = Amplitude.getInstance(instanceName: "project");

String sessionUrl = await FlutterUxcam.urlForCurrentSession();
String userUrl = await FlutterUxcam.urlForCurrentUser();
analytics.logEvent("uxcam", eventProperties: {
    "session_url": sessionURL
});

analytics.setUserProperties({
    "uxcam_url": userUrl
});

//tracking conditionally
if (purchased) {
    analytics.logEvent("purchased", eventProperties: {
        "uxcam_session_url": sessionURL
    });
}

UXCam session URL in Amplitude

You can view your tracked event from Amplitude activity feed.

1196

Log Amplitude metadata with UXCam

You can also bind Amplitude with UXCam. For example, you can log Amplitude session ID to UXCam as an Event to easily search for that specific session in UXCam Dashboard and watch the session replay.

2369
How To Do It:
//Log Amplitude session id to UXCam
UXCam.logEvent("amplitude", withProperties: [
    "session-id": Amplitude.instance()?.getSessionId()
])
//Log Amplitude session id to UXCam
[UXCam logEvent:@"amplitude" withProperties: @{
    @"session-id": [[Amplitude instance] getSessionId];
}];
//Log Amplitude session id to UXCam
JSONObject eventProperties = new JSONObject();
eventProperties.put("session-id", Amplitude.getInstance().getSessionId());
UXCam.logEvent("amplitude", eventProperties);
//Log Amplitude session id to UXCam
RNUxcam.logEvent("amplitude", {
    "session-id": amplitude.getInstance().getSessionId()
});