Edit in GitHubLog an issue

Troubleshooting push identifier sync

When implementing push messaging via the Adobe Experience Platform Mobile SDK, you can validate the client-side implementation by verifying that you completed the following steps:

  1. Pass the device's push token to the SDK.
  2. Verify push token sync with the Experience Cloud Identity service.
  3. Ensure user opt-in for push in Adobe Analytics.
  4. Confirm user ID is correctly set (and is the same as Steps 2 and 3, above).

Pass the push identifier to the SDK

The setPushIdentifier API sets the device token for push notifications in the SDK. This results in a few network calls made to the requisite Adobe servers to associate the user with the push token.

setPushIdentifier

Java

Syntax

Copied to your clipboard
public static void setPushIdentifier(final String pushIdentifier);

Example

Copied to your clipboard
// retrieve the token from either GCM or FCM, and pass it to the SDK

Verify push token sync with the Experience Cloud Identity service

Launch your app with the device connected to an Adobe Experience Platform Assurance session.

In the list of events, verify that you have an event with type SetPushIdentifier. In the details panel on the right, verify the value of the push token for this device. The value in pushIdentifier is the same value that is sent to the Adobe servers.

Verify push identifier received by the SDK

Ensure user opt-in for push in Adobe Analytics

Launch your app with the device connected to an Adobe Experience Platform Assurance session.

In the resulting list of events, verify that you have an event with type AnalyticsForIdentityRequest. In the details panel on the right, you can see that there is a value that was sent to Analytics that opts this user in to receive push notifications.

Verify push preferences are opted in

Confirm that the user ID is correctly set

Launch your app with the device connected to an Adobe Experience Platform Assurance session.

In the list of events, verify that you have an event with type UPDATED_IDENTITY_RESPONSE. In the details panel on the right, confirm that the following values are correct:

  • The value for pushidentifier should match the value that was sent in step 2 above.
  • The value for mid should match the value for mid that is sent to Analytics. If you are using a custom visitor identifier, this payload should also contain a vid variable with a value that matches the value that was used to identify this user.

Verify push identifier synced

After completing these steps, your app is correctly configured and is ready to send push messages via the SDK and Adobe.

Was this helpful?
  • Privacy
  • Terms of Use
  • Do not sell or share my personal information
  • AdChoices
Copyright © 2024 Adobe. All rights reserved.