Enum Class AuthenticationErrorCodes#
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 | MinValue | 100 | The minimal value of an Authentication error code. |
ClientInvalidUserState | ClientInvalidUserState | 101 | A client error that is returned when the user is not in the right state. |
ClientNoActiveSession | 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 | InvalidParameters | 103 | The error returned when the parameter is missing or not in the right format. |
ClientInvalidProfile | ClientInvalidProfile | 107 | The error returned when a player tries to switch profile but the profile name is invalid. |
InvalidSessionToken | InvalidSessionToken | 108 | The error returned when a session token is invalid. |
ClientDeleteInvalidProfile | ClientDeleteInvalidProfile | 109 | The error returned when a player tries to delete a profile that does not exist. |
ClientDeleteDefaultProfile | ClientDeleteDefaultProfile | 110 | The error returned when a player tries to delete the default authentication user profile. |
ClientProcessingRequest | ClientProcessingRequest | 111 | The error returned when a player tries to alter the player profile while processing a request. |