Enum Class AuthenticationErrorCodes
Reference the error codes returned by authentication operations.
Read time 1 minuteLast updated 2 hours ago
Include
#include "AuthenticationErrorCodes.h"
Syntax
UENUM()enum class EAuthenticationErrorCodes : uint8{ MinValue = 100 UMETA(DisplayName = "MinimumValue"), ClientInvalidUserState = 101 UMETA(DisplayName = "ClientInvalidUserState"), ClientNoActiveSession = 102 UMETA(DisplayName = "ClientNoActiveSession"), InvalidParameters = 103 UMETA(DisplayName = "InvalidParameters"), AccountAlreadyLinked = 104 UMETA(DisplayName = "AccountAlreadyLinked"), AccountLinkLimitExceeded = 105 UMETA(DisplayName = "AccountLinkLimitExceeded"), ClientUnlinkExternalIdNotFound = 106 UMETA(DisplayName = "ClientUnlinkExternalIdNotFound"), ClientInvalidProfile = 107 UMETA(DisplayName = "ClientInvalidProfile"), InvalidSessionToken = 108 UMETA(DisplayName = "InvalidSessionToken"), ClientDeleteInvalidProfile = 109 UMETA(DisplayName = "ClientDeleteInvalidProfile"), ClientDeleteDefaultProfile = 110 UMETA(DisplayName = "ClientDeleteDefaultProfile"), ClientProcessingRequest = 111 UMETA(DisplayName = "ClientProcessingRequest")}
Values
Display Name | Name | Value | Description |
|---|---|---|---|
| MinimumValue | | 100 | The minimal value of an Authentication error code. |
| ClientInvalidUserState | | 101 | A client error that is returned when the user is not in the right state. |
| ClientNoActiveSession | | 102 | A client error that is returned when trying to sign in with the session token while there is no cached session token. |
| InvalidParameters | | 103 | The error returned when the parameter is missing or not in the right format. |
| ClientInvalidProfile | | 107 | The error returned when a player tries to switch profile but the profile name is invalid. |
| InvalidSessionToken | | 108 | The error returned when a session token is invalid. |
| ClientDeleteInvalidProfile | | 109 | The error returned when a player tries to delete a profile that does not exist. |
| ClientDeleteDefaultProfile | | 110 | The error returned when a player tries to delete the default authentication user profile. |
| ClientProcessingRequest | | 111 | The error returned when a player tries to alter the player profile while processing a request. |