Skip to main content

Users

Important
Helpshift’s Legacy SDKs (SDK Version <=7.x.x) reached their end of life on 31 Dec 2022, and end of support on 31 March 2023. Please upgrade to the Latest SDK if you haven't already.

Users

Note

Applicable to Cocos2d-x SDK 4.x and above.

How to Identify and Manage Users

Logging in users

Overview

A logged-in user is someone who can contact your support team only after providing a username and password. If you have logged-in users, we highly recommend passing the user's identifiers (user ID and/or email) using the login API so that your Agents can provide a personalized support experience to your users, no matter which device your end user is using. Using the login API also ensures that a user's conversations are available only to them when they log in.

What to provide as identifiers

You can provide either userID and/or userEmail to identify your users. We highly recommend using a user ID to identify your users. However, if you use emails to identify your users, then you should pass them in the userEmail field with the helpshiftConfig object. The following logic applies when you use both userID as well as userEmail:

  • When looking up users, the priority of `userId` is higher than that of `userEmail`
  • When the user ID matches an exisiting user, that user's email will be updated (if the email is provided)
  • When the email matches an existing user, the following logic applies:
    • If the user ID does not exist for a user matched by email, then the user ID will be added for that user (if a user ID is provided)
    • If the user ID already exists on the user matched by email, then a new user will be created (if a different user ID is provided)

How to use

You should call Helpshift SDK's login API whenever the user successfully logs into your app. The login API takes the following parameters:

ParameterRequire/OptionalSDK DescriptionInportant Considerations
NameOptionalProvide the name you'd like your Agents to use when interacting with end users. If you don't know the user's name, you can leave it blank, and the Identity Bot (when enabled) will ask that user for their name. If you provide a value, the Identity Bot will not ask the user for their name again.Max length: 255 characters. Values larger than this will be truncated.
User IDRequired as an identifier if email is not providedA user's unique identifier. User IDs must be unique. You should not use the same user ID for different users.
  • Max length: 750 characters. Values larger than this will result in the creation of an anonymous user.
  • Leading / trailing spaces are not allowed. Spaces in between are allowed. User IDs with leading / trailing spaces will result in the creation of an anonymous user.
  • User ID is always case-sensitive (eg. '1abc' is different from '1ABC').
  • Do not provide the user's email address as 'userID'. If you use email addresses to identify users, provide them as 'Email'.
  • If you are using the user ID as well as email, ensure that the User ID is present in subsequent calls - just providing email will return any profile if multiple profiles have the same email.
EmailRequired as an identifier if the user ID is not providedA user's email address. If you don't know the user's email, you can leave it blank and the Identity Bot (when enabled) will ask the user for their email. If you provide a value, then the Identity Bot will not ask the user for their email again.
  • Email format should be valid (should be in the format "my@email.com". Invalid emails will result in the creation of an anonymous user.
  • Leading / trailing spaces are not allowed. Emails with leading / trailing spaces will result in the creation of an anonymous user.
  • Email is always case insensitive (eg. 'MY@EMAIL.COM' is same as 'my@email.com').
/n
HMAC DigestOptionalA user authentication token generated via Hash-Based Message Authentication Code (HMAC) using SHA256. You should provide an HMAC Digest if you want to ensure that 3rd parties cannot file issues on behalf of your users or update their properties. Details here.
  • A valid HMAC Digest should be provided in order to ensure your users can file issues. Details here.

HelpshiftCocosUserBuilder *userBuilder = new HelpshiftCocosUserBuilder("unique-user-id-746501", "john.doe@app.co");
userBuilder->setName("John Doe");
HelpshiftCocosUser user = userBuilder->build();
HelpshiftCocos2dx::login(&user);

Note
  • If you are setting enableFullPrivacy to be "yes", you shouldn't be using email as the only identifier in the login API for that user. This will result in the creation of an anonymous user.

  • If you were using setUserIdentifier (now deprecated), if the user has an open issue, using login API will result in the creation of a new issue. However, the previous issue will be available to Agents under 'Other issues'

  • Users will be able to see messages in the Campaigns Inbox only if you were using the Login API. If you were using the setUserIdentifier API (now deprecated), using the Login API will result in the creation of a new logged-in user and therefore a new Campaign Inbox.

Logging out users

Overview

Once a user logs out from your app, you should call the Helpshift SDK logout API to ensure no one else can view this user's conversations.

Note

The logout API is expected to be used in conjunction with the login API.

How to use


HelpshiftCocos2dx::logout();

Note
  • If you are using the [leaveBreadCrumb]/cocos2d-x/tracking-android#app-usage) API to pass user login related crumbs, please make sure to call the clearBreadCrumbs API when you change the login.
  • If any of the Helpshift screens are currently being shown in the app, then any login/logout attempt will be ignored.
  • If the login API is called with different user identifier, then it will first log out the currently logged-in user, and then log in with the user identifier provided.
  • It is best to call the login API immediately when your app user logs in.

Anonymous users

Overview

An anonymous user is someone who can access the app without a username and password. If a user identifier (user ID and/or email) is not passed via the login API, then Helpshift assumes that the user is an anonymous user and is not currently logged in.

If your use case involves multiple logged-in/anonymous users using the same device and discussing info during support conversations (which you ideally wouldn't want to be shared across logins), you should use the clearAnonymousUser functionality. When this API is used, anonymous users are cleared whenever any user logs in. Once cleared, such users (and their conversations) cannot be fetched again for the end users.


HelpshiftCocos2dx::clearAnonymousUser();

Note
  • The clearAnonymousUser API does not impact logged-in users at all.
  • The clearAnonymousUser API will only work if called from logged-in mode.

Verifying the identity of users

Configuring identity verification in your app

Overview

User Identity Verification is a security measure that verifies that all requests made from your app to Helpshift are coming from authentic end users. This prevents 3rd parties or hackers from impersonating your users. You can learn more about User Identity Verification and the steps to configure it here. In order to ensure your users are verified, you should provide a 'user authentication token' with the helpshiftConfig object at the time of initialization. You can find the steps to generate a 'user authentication token' here. The 'user authentication token' is an HMAC Digest, which is generated via HMAC using SHA256.

Sending the HMAC Digest to verify users' identity

You can send the 'user authentication token' with the login API call. If Identity Verification is enabled on the Helpshift Dashboard (documentation here), Helpshift recalculates the unique 'user authentication token' using the shared secret key, and compares the 'user authentication token' sent by you to the recalculated value. If they're equal, then the user's identity is verified, and they are able to file Issues.


HelpshiftCocosUserBuilder *userBuilder = new HelpshiftCocosUserBuilder("unique-user-id-746501", "john.doe@app.co");
userBuilder->setAuthToken("generated-user-authentication-token");
userBuilder->setName("John Doe");
HelpshiftCocosUser user = userBuilder->build();
HelpshiftCocos2dx::login(&user);

Note
  • If the secret key is regenerated for an app on the Dashboard, you should ensure you update your endpoint code as well, in order to generate a valid 'user authentication token'. Following this, your Admins should delete the old secret key from the Dashboard in order to ensure requests using a 'user authentication token' generated using the old secret key become invalid.
  • If enableFullPrivacy is 'On', then the 'user authentication token' should be generated only on the user ID.

Identity verificaiton failure

Overview

When Identity Verification is turned 'On' and a login request is made with no 'user authentication token' or with an invalid 'user authentication token' for Cocos2d-x SDK v4.0.0 & above, identity verification will fail. If identity verification fails, the following will hold true:

  • Anonymous users (users for whom the developer is not providing any identifiers) are always able to file Issues.
  • Logged-in users (users for whom the developer is providing an identifier such as user ID or email) will not be able to file Issues or see conversations if they are unverified. Unverified logged-in users will see an error on the form or conversational UI.

If the logged-in users are verified (i.e. a valid 'user authentication token' is provided), they are able to see the previous issue or create a new issue. The UI for verified, logged-in users looks & works exactly the same as it would if 'Identity verification' were turned off. Only unverified users get impacted as listed above.

Note

End-users on Cocos2d-x SDK 1.9.0 or lower are not impacted, even if 'Identity Verification' is enabled on the Dashboard.

How to use the failure delegates

If identity verification fails, the SDK will invoke one of the following delegates to notify the application of the failure:

DelegateWhen is it calledWhen to use
HSAuthTokenNotProvidedWhen no 'user authentication token' is providedIf you do not plan on sending a 'user authentication token' when implementing Cocos2d-x SDK 4.0.0, but plan on implementing it in the future, you can use this failure delegate to show your own alerts to the user, such as a prompt to update the app. You may want to use this if you are using the login API without the 'user authentication token', since these users will be considered unverified once 'Identity Verification' is enabled on the Dashboard. Using this delegate is completely optional - Helpshift will prevent unverified users from being able to file Issues, as mentioned previously.
HSInvalidAuthTokenWhen the 'user authentication token' is invalidFor Cocos2d-x SDK v4.0.0 and later, if the HMAC Digest being provided via login API is invalid, then Helpshift will prevent the users from filing Issues. The 'user authentication token' can be invalid if:
  • You made a programming error. Check how to generate HMAC Digest here
  • You regenerated the secret key on the Dashboard, but didn't update the 'user authentication token'.
  • A 3rd party is trying to make requests.
When the 'user authentication token' is invalid, end-users will not able to file Issues and an error is shown to them, as mentioned previously. You can use this delegate if you want to show your own alerts or re-fetch the correct auth token from your server.

void authenticationFailure(HelpshiftCocosUser *user, HSAuthenticationFailureReason reason) {
if (reason == HSAuthenticationFailureReason::HSAuthTokenNotProvided) {
...
} else if (reason == HSAuthenticationFailureReason::HSInvalidAuthToken) {
...
}
}
HelpshiftCocos2dx::registerAuthenticationFailureDelegate(authenticationFailure);

Note

The error strings can be customised in the SDK.

Testing & Troubleshooting

Steps to test that Identity Verification is correctly set up are available here.