Upgrading Result API
Suppose you have an error when implementing signIn. The error code, INVALID_PARAM, is the method to examine circumstances and troubleshoot the error before you adopt the upgraded Result API. What changes come with the upgraded API? In the situation mentioned above with new API system, all values about the error are sent in the format of code with the incidental messages. Thanks to the system upgraded, you catch the exact point of the problem. For more information, see the sample code and the API code by development environment.
Sample Code
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
AuthV4.signIn(providerType, new AuthV4.AuthV4SignInListener() { @Override public void onAuthV4SignIn(ResultAPI result, AuthV4.PlayerInfo playerInfo) { // AS-IS: Earlier than HIVE SDK 4.6.0 if (result.errorCode == ResultAPI.ErrorCode.INVALID_PARAM) { // Reason to fail: unclear } // TO-BE: HIVE SDK 4.6.0 and later if (result.code == ResultAPI.Code.AuthV4AlreadyAuthorized) { // Reason to fail: user already signed in }else if(result.code == ResultAPI.Code.AuthV4InProgressSignIn) { // Reason to fail: The previous trial of SignIn is in progress } } }); |
Result API Code
iOS
Key Name | Code | Details |
kSuccess | 0 | Success. |
kCommonHTTPConnectionException | -1 | [Common] HTTP Connection exception. |
kCommonHTTPConnectionOpenException | -2 | [Common] HTTP Connection open exception. |
kCommonHTTPContentEncodingNotSupported | -3 | [Common] HTTP Content encoding not supported. |
kCommonHTTPDecryptionFailed | -4 | [Common] HTTP Decryption failed. |
kCommonHTTPResponseException | -5 | [Common] HTTP Response exception. |
kCommonHTTPInvalidBody | -6 | [Common] HTTP body is nil. |
kCommonHTTPInvalidJSON | -7 | [Common] HTTP body has invalid JSON: %@ |
kCommonHTTPInvalidURLRequest | -8 | [Common] HTTP Failed to create NSMutableURLRequest. |
kCommonHTTPInvalidURL | -9 | [Common] HTTP Failed to create NSURL from urlPath: %@ |
kCommonHTTPGzipDecodeFailed | -10 | [Common] GZip decoding is failed. |
kCommonHTTPNetworkError | -11 | [Common] Network error is occurred on handle response: %@ |
kTestError | -800 | [Test] Error message. |
kTestWithNSError | -801 | [Test] NSError message: %@ |
kTestWithNSString | -802 | [Test] NSString message: %@ |
kTestWithNSDictionary | -803 | [Test] NSDictionary message: %@ |
kCommonUnknown | -999 | [Common] Unknown |
kAuthNotInitialized | -1100001 | [Auth-Common] Not Initialized |
kAuthInvalidServerResponse | -1100002 | [Auth-Common] Invalid Server Response |
kAuthServerResponseNotSuccessful | -1100003 | [Auth-Common] Server Response Not Successful. string: %@ |
kAuthInvalidUser | -1100004 | [Auth-Common] Invalid User |
kAuthUserCanceled | -1100005 | [Auth-Common] User Canceled |
kAuthInProgressLoginLogout | -1100006 | [Auth-Common] Login or logout is already in progress |
kAuthInvalidSelectedAccountURL | -1100007 | [Auth-Common] Invalid Selected AccountURL |
kAuthInvalidSelectedVID | -1100008 | [Auth-Common] Selected VID is empty or null |
kAuthOnRunningV4 | -1100009 | [Auth-Common] On Running V4 |
kAuthInvalidConfigurationXml | -1100010 | [Auth-Common] Invalid Configuration Xml |
kAuthInvalidParamLoginType | -1100011 | [Auth-Common] Invalid Param Login Type: %@ |
kAuthInvalidParamVID | -1100012 | [Auth-Common] Invalid Param Vid: %@ |
kAuthInvalidParamSessionKey | -1100013 | [Auth-Common] Invalid Param Session Key |
kAuthInvalidGuestSession | -1100014 | [Auth-Common] Invalid Guest Session |
kAuthUserInBlacklist | -1100015 | [Auth-Common] User In Blacklist: %@ |
kAuthInvalidAccountSession | -1100016 | [Auth-Common] Invalid Account Session |
kAuthJsonException | -1100017 | [Auth-Common] JSON Parsing failed. error: %@ |
kAuthCanceled | -1100018 | [Auth-Common] Canceled |
kAuthDialogAlreadyUsing | -1100019 | [Auth-Common] Dialog is already using. |
kAuthNetworkErrorShowLoginSelection | -1100020 | [Auth-Common] Network error occured on Get My Profile: %@ |
kAuthNetworkErrorCheckMaintenance | -1100021 | [Auth-Common] Network error occured on Check Maintenance |
kAuthResponseFailCheckMaintenance | -1100022 | [Auth-Common] Bad response on Check Maintenance: %@ |
kAuthResponseFailMaintenanceDialog | -1100023 | [Auth-Common] Failed to show maintenance dialog. |
kAuthNetworkErrorProcessLoginType | -1100024 | [Auth-Common] Network error occured on Prelogin: %@ |
kAuthNetworkErrorGuestLogin | -1100025 | [Auth-Common] Network error occured on Guest Login: %@ |
kAuthHIVESocialLoginCancelled | -1100026 | [Auth-Common] HIVE social login cancelled. |
kAuthNetworkErrorLoginCenterLogin | -1100027 | [Auth-Common] Network error occured on Login Center Login: %@ |
kAuthNetworkErrorRequestUpdate | -1100028 | [Auth-Common] Network error occured on Request Update: %@ |
kAuthNetworkErrorRequestAdultConfirm | -1100029 | [Auth-Common] Network error occured on Adult Confirm. |
kAuthInvalidParamVIDList | -1100030 | [Auth-Common] VID list is nil or empty |
kAuthV4InvalidServerResponse | -1200001 | [AuthV4-Common] InvalidServerResponse |
kAuthV4ServerResponseNotSuccessful | -1200002 | [AuthV4-Common] ServerResponseNotSuccessful |
kAuthV4OnRunningV1 | -1200003 | [AuthV4-Common] OnRunningV1 |
kAuthV4InProgressSignIn | -1200004 | [AuthV4-Common] SigninInProgress |
kAuthV4InvalidConfigurationXml | -1200005 | [AuthV4-Common] InvalidConfigurationXml |
kAuthV4InvalidSavedPlayerInfo | -1200006 | [AuthV4-Common] InvalidSavedPlayerInfo |
kAuthV4AlreadyAuthorized | -1200007 | [AuthV4-Common] AlreadyAuthorized: %@ |
kAuthV4PlayerConfliction | -1200008 | [AuthV4-Common] PlayerConfliction |
kAuthV4UserInBlacklist | -1200009 | [AuthV4-Common] UserInBlacklist |
kAuthV4InvalidSession | -1200010 | [AuthV4-Common] Invalid Session: %@ |
kAuthV4PlayerConflictionHandlingFailed | -1200011 | [AuthV4-Common] PlayerConflictionHandlingFailed |
kAuthV4InvalidParamDid | -1200012 | [AuthV4-Common] Failed to seup. DID is empty or nil |
kAuthV4InvalidParamProviderTypeList | -1200013 | [AuthV4-Common] InvalidParamProviderTypeList |
kAuthV4NotInitialized | -1200014 | [AuthV4-Common] Need Initialize first |
kAuthV4SessionExist | -1200015 | [AuthV4-Common] Already authorized |
kAuthV4SessionNotExist | -1200016 | [AuthV4-Common] Not exist remain session. please SignIn Provider. |
kAuthV4InvalidProviderType | -1200017 | [AuthV4-Common] Provider type is invalid: %@ |
kAuthV4SigninFirst | -1200018 | [AuthV4-Common] Need Sign in first. |
kAuthV4ProviderAlreadyConnected | -1200019 | [AuthV4-Common] ProviderAlreadyConnected: %@ |
kAuthV4ProviderAlreadyDisconnected | -1200020 | [AuthV4-Common] ProviderAlreadyDisconnected: %@ |
kAuthV4InvalidParamSelectedPlayerid | -1200021 | [AuthV4-Common] InvalidParamSelectedPlayerid |
kAuthV4InvalidConflictionInfo | -1200022 | [AuthV4-Common] Conficltion info is invalid: %@ |
kAuthV4InvalidPlayeridList | -1200023 | [AuthV4-Common] PlayerID List is empty or nil |
kAuthV4JsonException | -1200024 | [AuthV4-Common] JsonException : %@ |
kAuthV4InvalidSigninSelection | -1200025 | [AuthV4-Common] InvalidSigninSelection |
kAuthV4NotSupportedProviderType | -1200026 | [AuthV4-Common] Requested provider type is not supported: %@ |
kAuthV4WebviewDialogError | -1200027 | [AuthV4-Common] WebviewDialogError: %@ |
kAuthV4InProgressSetup | -1200028 | [AuthV4-Common] Setup is already in progress |
kAuthV4NetworkErrorGetProfile | -1200029 | [AuthV4-Common] Network error occured on Get Profile. |
kAuthV4InProgressAuthDialog | -1200030 | [AuthV4-Common] Auth dialog in use. |
kAuthV4InvalidParamViewID | -1200031 | [AuthV4-Common] View ID is empty or nil. |
kAuthV4InvalidParamPlayerID | -1200032 | [AuthV4-Common] Invalid param player ID: %@ |
kAuthV4NetworkErrorCheckMaintenance | -1200033 | [AuthV4-Common] Network error occured on Check Maintenance. |
kAuthV4NetworkErrorCheckBlacklist | -1200034 | [AuthV4-Common] Network error occured on Check Blacklist. |
kAuthV4NetworkErrorIDP | -1200035 | [AuthV4-Common] Network error occured on Internal IDP. |
kAuthV4ResponseFailProviderList | -1200036 | [AuthV4-Common] Response error. Provider list is empty. |
kAuthV4NetworkErrorSigninGuest | -1200037 | [AuthV4-Common] Network error occured on Internal Signin Guest. type: %@ |
kAuthV4NetworkErrorSigninProvider | -1200038 | [AuthV4-Common] Network error occured on Internal Signin Provider. |
kAuthV4ResponseFailProviderUserID | -1200039 | [AuthV4-Common] Response error. Provider user ID is empty. |
kAuthV4NetworkErrorConnect | -1200040 | [AuthV4-Common] Network error occured on Connect |
kAuthV4NetworkErrorDisconnect | -1200041 | [AuthV4-Common] Network error occured on Disconnect |
kAuthV4NetworkErrorSelectIDP | -1200042 | [AuthV4-Common] Network error occured on Select IDP |
kAuthV4ResponseFailGetIDP | -1200043 | [AuthV4-Common] Response error. IDP is empty or nil: %@ |
kAuthV4ResponseFailSelectedPlayerID | -1200044 | [AuthV4-Common] Response error. Selected player ID is empty or nil |
kAuthV4CancelDialog | -1200045 | [AuthV4-Common] Dialog is cancelled by user. |
kAuthV4ResponseFailSocialDialog | -1200046 | [AuthV4-Common] Response error. Social Dialog.: %@ |
kAuthV4ProfileNetworkError | -1200047 | [AuthV4-Profile] Network error is occurred. |
kAuthV4ProfileResponseFail | -1200048 | [AuthV4-Profile] Response Fail. |
kAuthV4MembershipNetworkError | -1200049 | [AuthV4-Membership] Network error is occurred. |
kAuthV4MembershipResponseFail | -1200050 | [AuthV4-Membership] Response Fail. |
kAuthV4NetworkErrorShowProfile | -1200051 | [AuthV4-Common] Network error is occured on show profile. |
kAuthV4NetworkErrorShowInquiry | -1200053 | [AuthV4-Common] Network error is occured on show inquiry |
kAuthV4NetworkErrorOnSignInFinish | -1200054 | [AuthV4-Common] Network error is occured on sign in finish |
kAuthV4ResponseFailSigninProvider | -1200055 | [AuthV4-Common] Response Fail on Internal Signin Provider : %@ |
kAuthV4ResponseFailConnect | -1200056 | [AuthV4-Common] Response Fail on Connect : %@ |
kAuthV4ResponseFailCheckProvider | -1200057 | [AuthV4-Common] Response Fail on CheckProvider : %@ |
kAuthV4ResponseFailGetProfile | -1200058 | [AuthV4-Common] Response Fail on GetProfile : %@ |
kAuthV4ResponseFailGetFriendList | -1200059 | [AuthV4-Common] Response Fail on GetFriendList : %@ |
kAuthV4ResponseFailCheckMaintenance | -1200060 | [AuthV4-Common] Response Fail on CheckMaintenance : %@ |
kAuthV4ResponseFailCheckBlacklist | -1200061 | [AuthV4-Common] Response Fail on CheckBlacklist : %@ |
kAuthV4ResponseFailSigninGuest | -1200062 | [AuthV4-Common] Response Fail on SigninGuest : %@ |
kAuthV4ResponseFailDisconnect | -1200063 | [AuthV4-Common] Response Fail on Disconnect : %@ |
kAuthV4ResponseFailSelectIDP | -1200064 | [AuthV4-Common] Response Fail on SelectIDP : %@ |
kAuthV4ResponseFailSigninPlayer | -1200065 | [AuthV4-Common] Response Fail on Internal Signin Player : %@ |
kAuthV4ProviderLoginError | -1200101 | [AuthV4-Provider] ProviderLoginError |
kAuthV4ProviderLogoutError | -1200102 | [AuthV4-Provider] Logout Failed |
kAuthV4ProviderNotSupportGetFriends | -1200103 | [AuthV4-Provider] Not supported function Get Friends |
kAuthV4FacebookUserCanceled | -1200201 | [AuthV4-ProviderFacebook] Login action is cancelled by user: %@ |
kAuthV4FacebookResponseFailLogin | -1200202 | [AuthV4-ProviderFacebook] Response error. Failed to login: %@ |
kAuthV4FacebookResponseFailGetFriends | -1200203 | [AuthV4-ProviderFacebook] Response error. Failed to get friends: %@ |
kAuthV4FacebookNetworkErrorUploadProfile | -1200204 | [AuthV4-ProvideRFacebook] Network error occured on upload profile. |
kAuthV4FacebookResponseFailUploadProfile | -1200205 | [AuthV4-ProvideRFacebook] Response error. Failed to upload profile. |
kAuthV4GoogleResponseFailLogin | -1200301 | [AuthV4-ProviderGoogle] ConnectionFailed |
kAuthV4GoogleResponseFailLogout | -1200302 | [AuthV4-ProviderGoogle] DisconnetionFailed |
kAuthV4GoogleNetworkErrorUploadProfile | -1200303 | [AuthV4-ProviderGoogle] Network error is occured on upload profile. |
kAuthV4GoogleResponseFailUploadProfile | -1200304 | [AuthV4-ProviderGoogle] Response error. Failed to upload profile. |
kAuthV4GoogleResponseFailShowAchievements | -1200305 | [AuthV4-ProviderGoogle] Response error. Failed to show achievements. |
kAuthV4GoogleResponseFailShowLeaderboards | -1200306 | [AuthV4-ProviderGoogle] Response error. Failed to show leaderboards. |
kAuthV4AppleLoginCancel | -1200401 | [AuthV4-ProviderApple] Login Cancelled: %@ |
kAuthV4AppleResponseFailLogin | -1200402 | [AuthV4-ProviderApple] Response error. login: %@ |
kAuthV4AppleResponseFailLoginVC | -1200403 | [AuthV4-ProviderApple] Response error. apple view controller is nil |
kAuthV4AppleTimeOut | -1200404 | [AuthV4-ProviderApple] Timeout |
kAuthV4AppleResponseFailReportScore | -1200405 | [AuthV4-ProviderApple] Response error. Failed to report score: %@ |
kAuthV4AppleInProgressGameCenterVC | -1200406 | [AuthV4-ProviderApple] GameCenterViewController in use. |
kAuthV4AppleResponseFailLoadAchievements | -1200407 | [AuthV4-ProviderApple] Response error. Load achievements failed: %@ |
kAuthV4AppleResponseFailReportAchievements | -1200408 | [AuthV4-ProviderApple] Response error. Report achievements failed: %@ |
kAuthV4AppleResponseFailResetAchievements | -1200409 | [AuthV4-ProviderApple] Response error. Reset achievements failed: %@ |
kAuthV4VKInProgressLoginLogout | -1200501 | [AuthV4-ProviderVK] Login or logout in progress. |
kAuthV4VKResponseFailLogin | -1200502 | [AuthV4-ProviderVK] Response Fail on request login : %@ |
kAuthV4VKInvalidParamSDK | -1200503 | [AuthV4-ProviderVK] VK SDK Setup is failed. |
kAuthV4VKNotInitialized | -1200504 | [AuthV4-ProviderVK] VK SDK not initialized. |
kAuthV4VKCancelLogin | -1200505 | [AuthV4-ProviderVK] Request authorization is cancelled |
kAuthV4VKFailLogin | -1200506 | [AuthV4-ProviderVK] Request authorization is failed |
kAuthV4VKInvalidSession | -1200507 | [AuthV4-ProviderVK] VK Session is invalid. |
kAuthV4VKResponseFailGetFriends | -1200508 | [AuthV4-ProviderVK] Response Fail on get friends: %@ |
kAuthV4VKResponseFailLogout | -1200509 | [AuthV4-ProviderVK] Response Fail on request logout. |
kAuthV4VKResponseFailUploadProfile | -1200510 | [AuthV4-ProviderVK] Response Fail |
kAuthV4VKNetworkErrorUploadProfile | -1200511 | [AuthV4-ProviderVK] NetworkError |
kAuthV4WechatInProgressLoginLogout | -1200601 | [AuthV4-ProviderWeChat] Login or logout in progress. |
kAuthV4WechatResponseFailLogin | -1200602 | [AuthV4-ProviderWeChat] Response error. Failed to login: %@ |
kAuthV4WechatNotSupportedRequest | -1200603 | [AuthV4-ProviderWeChat] Request is not supported: %@ |
kAuthV4WechatResponseFailUserInfo | -1200604 | [AuthV4-ProviderWeChat] Request error. failed to get user info: %@ |
kAuthV4WechatNetworkErrorUserInfo | -1200605 | [AuthV4-ProviderWeChat] Request error. NetworkError while getting user info: %@ |
kAuthV4WechatNetworkError | -1200606 | [AuthV4-ProviderWeChat] NetworkError |
kAuthV4WechatResponseFail | -1200607 | [AuthV4-ProviderWeChat] ResponseFail |
kAuthV4WechatNetworkErrorLogin | -1200608 | [AuthV4-ProviderWeChat] NetworkError. Failed to login. |
kAuthV4WechatInvalidParamAppId | -1200609 | [AuthV4-ProviderWeChat] Wechat SDK Setup is failed. App ID / App Secret is empty or nil: %@ |
kAuthV4HIVEInProgressDialog | -1200701 | [AuthV4-ProviderHIVE] Dialog in use |
kAuthV4HIVEDialogCancel | -1200702 | [AuthV4-ProviderHIVE] Dialog is cancelled |
kAuthV4HIVENetworkErrorUploadProfile | -1200703 | [AuthV4-ProviderHIVE] Network error is occured on upload profile. |
kAuthV4HIVEResponseFailUploadProfile | -1200704 | [AuthV4-ProviderHIVE] Response error. failed to upload profile. |
kAuthV4HIVEResponseFailLogin | -1200705 | [AuthV4-ProviderHIVE] Response error. failed to login. |
kAuthV4QQInProgressLoginLogout | -1200801 | [AuthV4-ProviderQQ] Login or logout in progress. |
kAuthV4QQInvalidParamAppID | -1200802 | [AuthV4-ProviderQQ] QQ App ID Not found: %@ |
kAuthV4QQResponseFailLogin | -1200803 | [AuthV4-ProviderQQ] login session is not valid. |
kAuthV4QQCancelLogin | -1200804 | [AuthV4-ProviderQQ] login is cancelled. |
kAuthV4QQNetworkError | -1200805 | [AuthV4-ProviderQQ] Network error is occurred. |
kAuthV4QQNetworkErrorUploadProfile | -1200806 | [AuthV4-ProviderQQ] Network error is occurred on upload profile |
kAuthV4QQResponseFailUploadProfile | -1200807 | [AuthV4-ProviderQQ] Response error. Failed to upload profile |
kAuthV4QQCancelUploadProfile | -1200808 | [AuthV4-ProviderQQ] Upload profiel is cancelled. |
kAuthV4QQResponseFailLogout | -1200809 | [AuthV4-ProviderQQ] Response error. Failed to logout. |
kAuthV4QQNotInitialized | -1200810 | [AuthV4-ProviderQQ] QQ SDK not initialized. |
kSocialResponseFailDismissDialog | -2000001 | [Social-Common] InvalidParamClose |
kSocialCancelDismissDialog | -2000002 | [Social-Common] Canceled |
kSocialGoogleNotInitialized | -2000101 | [Social-Google] Not initialized. initialize user first. |
kSocialGoogleResponseFailGetProfile | -2000102 | [Social-Google] Fail to get profile. check response |
kSocialGoogleInProgressConnect | -2000103 | [Social-Google] In progress. connect. |
kSocialGoogleResponseFailConnect | -2000104 | [Social-Google] Response error. Failed to connect. |
kSocialGoogleCancelGetProfile | -2000105 | [Social-Google] Get profile is cancelled. |
kSocialGoogleCancelConnect | -2000106 | [Social-Google] Connect is cancelled. |
kSocialGoogleNetworkErrorUpdateServerFlag | -2000107 | [Social-Google] Network error is occured on update server flag. |
kSocialGoogleResponseFailUpdateServerFlag | -2000108 | [Social-Google] Response error. Failed to update server flag. |
kSocialFacebookNotInitialized | -2000201 | [Social-Facebook] Not initialized. initialize user first. |
kSocialFacebookResponseFailGetProfile | -2000202 | [Social-Facebook] Fail to get profile. check response: %@ |
kSocialFacebookCancelGetProfile | -2000203 | [Social-Facebook] Get profile cancelled. |
kSocialFacebookResponseFailGetFriends | -2000204 | [Social-Facebook] Fail to get friends. check response: %@ |
kSocialFacebookCancelGetFriends | -2000205 | [Social-Facebook] Get friends cancelled. |
kSocialFacebookResponseFailSendMessage | -2000206 | [Social-Facebook] Fail to send message. check response: %@ |
kSocialFacebookCancelSendMessage | -2000207 | [Social-Facebook] Send message cancelled. |
kSocialFacebookMessageDialogShowFail | -2000208 | [Social-Facebook] Fail to show message dialog. |
kSocialFacebookResponseFailShowInvitation | -2000209 | [Social-Facebook] Fail to show invite dialog: %@ |
kSocialFacebookCancelShowInvitation | -2000210 | [Social-Facebook] Show invite dialog cancelled |
kSocialFacebookInvalidParamPost | -2000211 | [Social-Facebook] Invalid paramter for posting to facebook. |
kSocialFacebookPostDialogShowFail | -2000212 | [Social-Facebook] Fail to show post dialog. |
kSocialFacebookShareFail | -2000213 | [Social-Facebook] Fail to share: %@ |
kSocialFacebookShareCancelled | -2000214 | [Social-Facebook] Sharing cancelled. |
kSocialFacebookSendInvitationFail | -2000215 | [Social-Facebook] Fail to send invitation: %@ |
kSocialFacebookSendInvitationCancelled | -2000216 | [Social-Facebook] Send invitation is cancelled. |
kSocialFacebookCancelPost | -2000217 | [Social-Facebook] Posting is cancelled. |
kSocialFacebookResponseFailPost | -2000218 | [Social-Facebook] Response error. Failed to posting. |
kSocialFacebookOperationException | -2000219 | [Social-Facebook] Operation exception is occured. |
kSocialFacebookServiceException | -2000220 | [Social-Facebook] Service exception is occured. |
kSocialFacebookException | -2000221 | [Social-Facebook] Exception is occured. |
kSocialHIVENotInitialized | -2000301 | [Social-HIVE] Not initialized. initialize user first. |
kSocialHIVENetworkErrorGetMyProfile | -2000302 | [Social-HIVE] Network error occured on Get My Profile: %@ |
kSocialHIVEInvalidParamSetMyProfile | -2000303 | [Social-HIVE] Invalid parameter. Comment is required |
kSocialHIVENetworkErrorSetMyProfile | -2000304 | [Social-HIVE] Network error occured on Set My Profile: %@ |
kSocialHIVENetworkErrorGetFriends | -2000305 | [Social-HIVE] Network error occured on Get Friends: %@ |
kSocialHIVEInvalidSession | -2000306 | [Social-HIVE] Invalid session. Only HIVE user is permitted |
kSocialHIVEInvalidParamVID | -2000307 | [Social-HIVE] Invalid parameter. Valid VID is required. |
kSocialHIVENetworkErrorGetVIDByUIDList | -2000308 | [Social-HIVE] Network error occured on Get VID By UID List: %@ |
kSocialHIVENetworkErrorGetUIDByVIDList | -2000309 | [Social-HIVE] Network error occured on Get UID By VID List: %@ |
kSocialHIVEInvalidParamContentSendMessage | -2000310 | [Social-HIVE] Invalid parameter. Message content is required. |
kSocialHIVENetworkErrorSendMessage | -2000311 | [Social-HIVE] Network error occured on Send Message: %@ |
kSocialHIVEInvalidParamReceiptSendMessage | -2000312 | [Social-HIVE] Invalid parameter. Need valid receipts for Send Message. |
kSocialHIVEInvalidParamUID | -2000313 | [Social-HIVE] Invalid parameter. UID is empty or nil |
kSocialHIVEInProgressSocialDialog | -2000314 | [Social-HIVE] In progress. SocialDialog is already showing. |
kSocialHIVESocialDialogClosed | -2000315 | [Social-HIVE] SocialDialog is closed. |
kSocialHIVENetworkErrorGetBadgeInfo | -2000316 | [Social-HIVE] Network error occured on Get Badge Info: %@ |
kSocialHIVEResponseFailGetMyProfile | -2000317 | [Social-HIVE] Response error is occured on Get My Profile: %@ |
kSocialHIVEResponseFailSetMyProfile | -2000318 | [Social-HIVE] Response error is occured on Set My Profile: %@ |
kSocialHIVEResponseFailGetFriends | -2000319 | [Social-HIVE] Response error is occured on Get Friends: %@ |
kSocialHIVEResponseFailGetVID | -2000320 | [Social-HIVE] Response error occured on Get VID: %@ |
kSocialHIVEResponseFailInvalidVIDList | -2000321 | [Social-HIVE] Server response vid list does not match. |
kSocialHIVEResponseFailGetUID | -2000322 | [Social-HIVE] Response error occured on Get UID: %@ |
kSocialHIVEResponseFailInvalidUIDList | -2000323 | [Social-HIVE] Server response uid list does not match. |
kSocialHIVEResponseFailSendMessage | -2000324 | [Social-HIVE] Response error is occured on Send Message: %@ |
kSocialHIVEResponseFailGetBadgeInfo | -2000325 | [Social-HIVE] Response error is occured on Get badge: %@ |
kSocialHIVEResponseFailDialogWebView | -2000326 | [Social-HIVE] WebView error is occured in social dialog: %@ |
kSocialHIVEResponseFailSocialDialog | -2000327 | [Social-HIVE] Social dialog error is occured. |
kSocialHIVEInvalidParamFriendType | -2000328 | [Social-HIVE] Requested friend type %@ is not supported. |
kSocialHIVEResponseFailGetProfiles | -2000329 | [Social-HIVE] Response error. Failed to get profiles. |
kSocialHIVEInvalidParamGetProfiles | -2000330 | [Social-HIVE] Invalid param get profiles. |
kSocialHIVEResponseFail | -2000331 | [Social-HIVE] Response error. |
kSocialHIVEInvalidParamSendMessage | -2000332 | [Social-HIVE] Invalid parameter. Message content is required. |
kSocialHIVEInvalidParamSendInvitationMessage | -2000333 | [Social-HIVE] Invalid parameter. Send invitation message. |
kSocialHIVEResponseFailGetPictureFromGallery | -2000334 | [Social-HIVE] Response error. Failed to get picture from gallery. |
kSocialHIVEResponseFailGetPictureFromCamera | -2000335 | [Social-HIVE] Response error. Failed to get picture from camera. |
kSocialHIVENetworkErrorSendInvitationMessage | -2000336 | [Social-HIVE] Network error is occured on send invitation message. |
kPromotionNotInitialized | -3000001 | [Promotion] Not Initialized. Initialize User First |
kPromotionAlreadyShowing | -3000002 | [Promotion] Promotion View is already showing. |
kPromotionNetworkErrorShowPromotion | -3000003 | [Promotion] Network error occured on Show Promotion: %@ |
kPromotionNetworkErrorShowCustomContents | -3000004 | [Promotion] Network error occured on Show Custom Contents: %@ |
kPromotionNetworkErrorShowOfferwall | -3000005 | [Promotion] Network error occured on Show Offerwall |
kPromotionNetworkErrorShowReview | -3000006 | [Promotion] Network error occured on Show Review: %@ |
kPromotionNetworkErrorGetViewInfo | -3000007 | [Promotion] Network error occured on Get View Info: %@ |
kPromotionNetworkErrorGetBadgeInfo | -3000008 | [Promotion] Network error occured on Get Badge Info: %@ |
kPromotionShowDialogFail | -3000009 | [Promotion] Fail to show Dialog. Please check data from promotion server: %@ |
kPromotionShowReviewFail | -3000010 | [Promotion] Fail to show Review Dialog. Please check data from promotion server: %@ |
kPromotionGetViewInfoError | -3000011 | [Promotion] Fail to get view info. Please check data from promotion server: %@ |
kPromotionGetBadgeInfoError | -3000012 | [Promotion] Fail to get badge info. Please check data from promotion server: %@ |
kPromotionResponseFailShowPromotion | -3000013 | [Promotion] Response error. Failed to show promotion. |
kPromotionResponseFailShowCustomContents | -3000014 | [Promotion] Response error. Failed to show custom contents. |
kPromotionResponseFailShowOfferwall | -3000015 | [Promotion] Response error. Failed to show offerwall. |
kPromotionResponseFailShowReview | -3000016 | [Promotion] Response error. Failed to show review. |
kPromotionResponseFailGetViewInfo | -3000017 | [Promotion] Response error. Failed to get view info |
kPromotionResponseFailGetBadgeInfo | -3000018 | [Promotion] Response error. Failed to get badge info. |
kPromotionNetworkErrorShowExit | -3000019 | [Promotion] Network error is occured on show exit. |
kPromotionNetworkErrorGetAppInvitationData | -3100001 | [Promotion UA] Network error occured on Get App Inviation data: %@ |
kPromotionResponseFailGetAppInvitationData | -3100002 | [Promotion UA] Fail to get App Invitation Data. Please check data from promotion server: %@ |
kUserEngagementResponseFail | -3200001 | [Promotion UE] Response error. |
kUserEngagementAlreadySetReady | -3200002 | [Promotion UE] Already in ready to UE. |
kUserEngagementHandlerNotRegistered | -3200003 | [Promotion UE] Handler not registered. |
kUserEngagementNotLogined | -3200004 | [Promotion UE] Unauthorized User. Please do login first. |
kUserEngagementEmptyCouponId | -3200005 | [Promotion UE] Coupon value is empty. |
kUserEngagementEmptyMarketPid | -3200006 | [Promotion UE] Market pid value is empty. |
kUserEngagementListenerNotRegistered | -3200007 | [Promotion UE] Listener is not registered. |
kPushNotInitialized | -4000001 | [Push] Not initialized. initialize user first. |
kPushInvalidParamLocalPush | -4000002 | [Push] Invalid Param Local Push |
kPushInvalidParamRemotePush | -4000003 | [Push] Invalid Param Remote Push |
kPushNetworkError | -4000004 | [Push] Network Error |
kPushResponseFailGetRemotePush | -4000005 | [Push] Bad response on Get Remote Push: %@ |
kPushResponseFailSetRemotePush | -4000006 | [Push] Bad response on Set Remote Push: %@ |
kIAPNotInitialize | -6000001 | [IAP] Not Initialized. Initialize User First. |
kIAPAlreadyInInitialize | -6000002 | [IAP] Already IAP Initialized. |
kIAPNetworkError | -6000003 | [IAP] Network error occured: %@ |
kIAPNotSupportedMarket | -6000004 | [IAP] Invalid or NOT supported market identifier. (%@) |
kIAPNeedLogin | -6000005 | [IAP] Unauthorized User. Please do login first. |
kIAPNeedShopInitialize | -6000006 | [IAP] Not Shop Initialized. Initialize Shop First. |
kIAPNotSupportedOSVersion | -6000007 | [IAP] Unsupported OS Version. |
kIAPNeedRestore | -6000008 | [IAP] Unfinished transactions: %@ exists. Need restore. |
kIAPRestoreNotOwned | -6000009 | [IAP] Restore Item not owned. |
kIAPNothingToRestore | -6000010 | [IAP] Nothing to restore. |
kIAPFailRestore | -6000011 | [IAP] Fail to restore. |
kIAPRestrictPayments | -6000012 | [IAP] This device is not able or allowed to make payments. |
kIAPNetworkJsonException | -6000013 | [IAP] Json Exception during IAP Network |
kIAPMarketNotSupportedAPI | -6000014 | [IAP] Market did not support this API |
kIAPFailMarketInitialize | -6000015 | [IAP] Market data is nothing |
kIAPResponseError | -6000016 | [IAP] Network response exception is occured. |
kIAPInProgressPurchasing | -6000101 | [IAP] Already in progress purchasing. |
kIAPInProgressRestoring | -6000102 | [IAP] Already in progress restoring. |
kIAPInProgressCheckPromotePurchase | -6000103 | [IAP] Already in progress check promote purchase. |
kIAPInProgressConnectingAppStore | -6000104 | [IAP] Already in progress connecting App Store. |
kIAPInProgressMarketSelection | -6000105 | [IAP] Already in progress market selection. |
kIAPAppStoreError | -6000201 | [IAP] App Store Error: %@ |
kIAPAppStoreResponseEmpty | -6000202 | [IAP] Fail to get response data from App Store. Response data is empty. |
kIAPCannotFindGamePID | -6000301 | [IAP] Can not find game pid matching with market pid, PID is empty or nil. |
kIAPProductNotExist | -6000302 | [IAP] Can not find product in IAP Server: %@ |
kIAPEmptyMarketPID | -6000303 | [IAP] Fail to request purchase product. MarketPID is empty or nil. |
kIAPFailCreateSKPayment | -6000304 | [IAP] SKPayment create failed. |
kIAPEmptyTransaction | -6000305 | [IAP] Fail to request purchase. Purchased transaction is empty. |
kIAPEmptyProduct | -6000306 | [IAP] Can not find market product using marker pid: %@ |
kIAPCancelPayment | -6000307 | [IAP] Failed to purchase(Cancelled): %@ |
kIAPFailPayment | -6000308 | [IAP] Failed to purchase |
kIAPInvalidMarketPID | -6000309 | [IAP] Failed to convert to MarketPIDs to PID set. |
kIAPPurchaseParamJsonException | -6000310 | [IAP] Purchase parameter json exception is occured. |
kIAPShopInfoParamJsonException | -6000311 | [IAP] Shopinfo parameter json exception is occured. |
kIAPBadgeParamJsonException | -6000312 | [IAP] Badge parameter json exception is occured. |
kIAPInvalidParamEmptyMarketPID | -6000401 | [IAP] Game pid is empty. |
kIAPInvalidParamLocationCode | -6000402 | [IAP] Location code is empty |
kIAPBlockedUser | -6000501 | [IAP] This user has been blocked: %@ |
kIAPPromoCodeMatchMultiMarketPID | -6000502 | [IAP] Multiple product matched in market pid: %@ |
kIAPPromoCodeNotMatchMarketPID | -6000503 | [IAP] No product matched in market pid: %@ |
kIAPPromoCodeAlreadyUsed | -6000504 | [IAP] This Promotion code already used: %@ |
kIAPAppleReceiptNotConnected | -6000505 | [IAP] Apple receipt verifying server can not connected: %@ |
kIAPServerDefaultError | -6000506 | [IAP] IAP server error: %@ |
kIAPInitializeMarketListIsEmpty | -6000601 | [IAP] Resopnse failed. Market list is empty. |
kIAPInitializeMarketURLISEmpty | -6000602 | [IAP] Resopnse failed. Market url is empty. |
kIAPEmptyMarketURL | -6000603 | [IAP] Selected market URL is empty. |
kIAPNotSelectedMarket | -6000604 | [IAP] Failed to select market. |
kIAPPlayStoreLaunchPurchaseFlowException | -6000701 | [IAP] PlayStore launchpurchaseflow exception is occured. |
kIAPPlayStoreSetupFail | -6000702 | [IAP] PlayStore start setup fail |
kIAPPlayStoreQueryInventoryFail | -6000703 | [IAP] PlayStore query inventory fail when initialize |
kIAPOneStoreProductListEmpty | -6000801 | [IAP] OneStore Product List is empty. |
kIAPOneStoreProductNetworkError | -6000802 | [IAP] OneStore requestProductInfo network fail |
kIAPOneStoreProductInfoError | -6000803 | [IAP] OneStore requestProductInfo fail. |
kIAPOneStoreInvalidRequestID | -6000804 | [IAP] OneStore requestID is invalid |
kIAPOneStorePurchaseError | -6000805 | [IAP] OneStore purchase fail |
kIAPOneStoreNetworkNullError | -6000806 | [IAP] Onestore Network response null error |
kIAPOneStoreNetworkInvalidError | -6000807 | [IAP] Onestore Network response invalid error |
kIAPLebiInitializeNetworkError | -6000901 | [IAP] Lebi Initialize fail |
kIAPLebiInitializeJsonException | -6000902 | [IAP] Lebi initialize json exception is occured. |
kIAPLebiPurchaseNetworkError | -6000903 | [IAP] Lebi purchase fail |
kIAPLebiPurchaseJsonException | -6000904 | [IAP] Lebi purchase json exception is occured. |
kIAPLebiVerifyOrderNetworkError | -6000905 | [IAP] Lebi verifyorder fail |
kIAPLebiVerifyOrderJsonException | -6000906 | [IAP] Lebi verifyorder json exception is occured. |
kIAPLebiBalanceNetworkError | -6000907 | [IAP] Lebi balance fail |
kIAPLebiBalanceParamJsonException | -6000908 | [IAP] Lebi balance json exception is occured. |
kIAPLebiPostException | -6000909 | [IAP] Lebi post exception is occured. |
kIAPLebiInternalRequestException | -6000910 | [IAP] Lebi Internal request exception is occured. |
kIAPLebiRestoreNetworkError | -6000911 | [IAP] Lebi restore create invalid response data |
kIAPV4NotInitialize | -6100001 | [IAPv4] Not Initialized. Initialize User First. |
kIAPV4NetworkError | -6100002 | [IAPv4] Network error occured: %@ |
kIAPV4NotSupportedMarket | -6100003 | [IAPv4] Market is not supported. |
kIAPV4NeedLogin | -6100004 | [IAPv4] Unauthorized User. Please do login first. |
kIAPV4NeedMarketConnect | -6100005 | [IAPv4] Not Shop Initialized. Initialize Shop First. |
kIAPV4NeedRestore | -6100006 | [IAPv4] Unfinished transactions: %@ exists. Need restore. |
kIAPV4NothingToRestore | -6100007 | [IAPv4] Nothing to restore. |
kIAPV4FailToRestore | -6100008 | [IAPv4] Fail to restore. |
kIAPV4RestrictPayments | -6100009 | [IAPv4] This device is not able or allowed to make payments. |
kIAPV4FailMarketConnect | -6100010 | [IAPv4] Market data is nothing |
kIAPV4ResponseError | -6100011 | [IAPv4] response parsing exception is occured. |
kIAPV4MarketNotSupportedAPI | -6100012 | [IAPv4] Market did not support this API |
kIAPV4InProgressMarketConnect | -6100101 | [IAPv4] Already in progress market connect. |
kIAPV4InProgressPurchasing | -6100102 | [IAPv4] Already in progress purchasing. |
kIAPV4InProgressRestoring | -6100103 | [IAPv4] Already in progress restoring. |
kIAPV4InProgressCheckPromote | -6100104 | [IAPv4] Already in progress check promote purchase. |
kIAPV4InProgressConnectAppStore | -6100105 | [IAPv4] Already in progress connect App Store. |
kIAPV4InProgressMarketSelect | -6100106 | [IAPv4] Already in progress market select. |
kIAPV4AppStoreError | -6100201 | [IAPv4] App Store Error: %@ |
kIAPV4AppStoreResponseEmpty | -6100202 | [IAPv4] Fail to get response data from App Store. Response data is empty. |
kIAPV4ProductNotExsitInAppStore | -6100203 | [IAPv4] Can not find product: %@ |
kIAPV4FinishMarketPidEmpty | -6100301 | [IAPv4] Finished market PID is empty or nil. |
kIAPV4PromoteMarketPidEmpty | -6100302 | [IAPv4] Market pid is empty. |
kIAPV4FailCreateSKPayment | -6100303 | [IAPv4] Fail to create payment. |
kIAPV4FailToConvertNSSet | -6100304 | [IAPv4] Fail to conver to MarketPids to Pid set. |
kIAPV4InvalidLogType | -6100305 | [IAPv4] Invalid log type. |
kIAPV4ProductNotExist | -6100306 | [IAPv4] Failed to request purchase product. Market product not found. |
kIAPV4RequestProductJsonException | -6100307 | [IAPv4] reqeust Product Json Exception is occured. |
kIAPV4PurchaseParamJsonException | -6100308 | [IAPv4] Purchase parameter json exception is occured. |
kIAPV4RequestMarketJsonException | -6100309 | [IAPv4] reqeust Market Json Exception is occured. |
kIAPV4ProductInfoJsonException | -6100310 | [IAPv4] Product Info Json exception is occured. |
kIAPV4CancelPayment | -6100311 | [IAPv4] Failed to purchase(Cancelled) |
kIAPV4FailPayment | -6100312 | [IAPv4] Failed to purchase |
kIAPV4EmptyParamMarketPID | -6100401 | [IAPv4] Market pid is empty. |
kIAPV4EmptyMarketList | -6100501 | [IAPv4] Market list from IAP server is empty. |
kIAPV4EmptyMarketURL | -6100502 | [IAPv4] Response failed. Market selection URL is emptry or nil. |
kIAPV4MarketPidListEmptyInIAPServer | -6100503 | [IAPv4] Failed to request product indentifiers. MarketPID is empty or nil. |
kIAPV4EmptyProductList | -6100504 | [IAPv4] IAP need get product info. get product info or showPayment API. |
kIAPV4ProductNotExistInIAPServer | -6100505 | [IAPv4] Invalid parameter. Unknown market product identifier: %@ |
kIAPV4PlayStoreLaunchPurchaseFlowException | -6100701 | [IAPv4] PlayStore launchpurchaseflow exception is occured. |
kIAPV4PlayStoreSetupFail | -6100702 | [IAPv4] PlayStore start setup fail |
kIAPV4PlayStoreQueryInventoryFail | -6100703 | [IAPv4] PlayStore query inventory fail when initialize |
kIAPV4PlayStoreFinishFail | -6100704 | [IAPv4] PlayStore Finish fail. |
kIAPV4OneStoreProductListEmpty | -6100801 | [IAPv4] OneStore Product List is empty. |
kIAPV4OneStoreProductNetworkError | -6100802 | [IAPv4] OneStore requestProductInfo network fail |
kIAPV4OneStoreProductInfoError | -6100803 | [IAPv4] OneStore requestProductInfo fail. |
kIAPV4OneStoreInvalidRequestID | -6100804 | [IAPv4] OneStore requestID is invalid |
kIAPV4OneStorePurchaseError | -6100805 | [IAPv4] OneStore purchase fail |
kIAPV4OneStoreNetworkNullError | -6100806 | [IAPv4] Onestore Network response null error |
kIAPV4OneStoreNetworkInvalidError | -6100807 | [IAPv4] Onestore Network response invalid error |
kIAPV4OneStoreFinishFail | -6100808 | [IAPv4] OneStore Finish fail. |
kIAPV4LebiInitializeNetworkError | -6100901 | [IAPv4] Lebi Initialize fail |
kIAPV4LebiInitializeJsonException | -6100902 | [IAPv4] Lebi initialize json exception is occured. |
kIAPV4LebiPurchaseNetworkError | -6100903 | [IAPv4] Lebi purchase fail |
kIAPV4LebiPurchaseJsonException | -6100904 | [IAPv4] Lebi purchase json exception is occured. |
kIAPV4LebiVerifyOrderNetworkError | -6100905 | [IAPv4] Lebi verifyorder fail |
kIAPV4LebiVerifyOrderJsonException | -6100906 | [IAPv4] Lebi verifyorder json exception is occured. |
kIAPV4LebiBalanceNetworkError | -6100907 | [IAPv4] Lebi balance fail |
kIAPV4LebiBalanceParamJsonException | -6100908 | [IAPv4] Lebi balance json exception is occured. |
kIAPV4LebiPostException | -6100909 | [IAPv4] Lebi post exception is occured. |
kIAPV4LebiInternalRequestException | -6100910 | [IAPv4] Lebi Internal request exception is occured. |
kIAPV4LebiRestoreNetworkError | -6100911 | [IAPv4] Lebi restore create invalid response data |
kIAPV4LebiCancel | -6100912 | [IAPv4] Lebi Charge cancel. |
kIAPV4LebiFinishFail | -6100913 | [IAPv4] Lebi Finish fail. |
Android
Key Name | Code | Details |
Success | 0 | Success. |
CommonHTTPConnectionException | -1 | [Common] HTTP Connection exception. |
CommonHTTPConnectionOpenException | -2 | [Common] HTTP Connection open exception. |
CommonHTTPContentEncodingNotSupported | -3 | [Common] HTTP Content encoding not supported. |
CommonHTTPDecryptionFailed | -4 | [Common] HTTP Decryption failed. |
CommonHTTPResponseException | -5 | [Common] HTTP Response exception. |
CommonHTTPInvalidBody | -6 | [Common] HTTP body is nil. |
CommonHTTPInvalidJSON | -7 | [Common] HTTP body has invalid JSON: %s |
CommonHTTPInvalidURLRequest | -8 | [Common] HTTP Failed to create NSMutableURLRequest. |
CommonHTTPInvalidURL | -9 | [Common] HTTP Failed to create NSURL from urlPath: %s |
CommonHTTPGzipDecodeFailed | -10 | [Common] GZip decoding is failed. |
CommonHTTPNetworkError | -11 | [Common] Network error is occurred on handle response: %s |
TestError | -800 | [Test] Error message. |
TestWithNSError | -801 | [Test] NSError message: %s |
TestWithNSString | -802 | [Test] NSString message: %s |
TestWithNSDictionary | -803 | [Test] NSDictionary message: %s |
CommonUnknown | -999 | [Common] Unknown |
AuthNotInitialized | -1100001 | [Auth-Common] Not Initialized |
AuthInvalidServerResponse | -1100002 | [Auth-Common] Invalid Server Response |
AuthServerResponseNotSuccessful | -1100003 | [Auth-Common] Server Response Not Successful. string: %s |
AuthInvalidUser | -1100004 | [Auth-Common] Invalid User |
AuthUserCanceled | -1100005 | [Auth-Common] User Canceled |
AuthInProgressLoginLogout | -1100006 | [Auth-Common] Login or logout is already in progress |
AuthInvalidSelectedAccountURL | -1100007 | [Auth-Common] Invalid Selected AccountURL |
AuthInvalidSelectedVID | -1100008 | [Auth-Common] Selected VID is empty or null |
AuthOnRunningV4 | -1100009 | [Auth-Common] On Running V4 |
AuthInvalidConfigurationXml | -1100010 | [Auth-Common] Invalid Configuration Xml |
AuthInvalidParamLoginType | -1100011 | [Auth-Common] Invalid Param Login Type: %s |
AuthInvalidParamVID | -1100012 | [Auth-Common] Invalid Param Vid: %s |
AuthInvalidParamSessionKey | -1100013 | [Auth-Common] Invalid Param Session Key |
AuthInvalidGuestSession | -1100014 | [Auth-Common] Invalid Guest Session |
AuthUserInBlacklist | -1100015 | [Auth-Common] User In Blacklist: %s |
AuthInvalidAccountSession | -1100016 | [Auth-Common] Invalid Account Session |
AuthJsonException | -1100017 | [Auth-Common] JSON Parsing failed. error: %s |
AuthCanceled | -1100018 | [Auth-Common] Canceled |
AuthDialogAlreadyUsing | -1100019 | [Auth-Common] Dialog is already using. |
AuthNetworkErrorShowLoginSelection | -1100020 | [Auth-Common] Network error occured on Get My Profile: %s |
AuthNetworkErrorCheckMaintenance | -1100021 | [Auth-Common] Network error occured on Check Maintenance |
AuthResponseFailCheckMaintenance | -1100022 | [Auth-Common] Bad response on Check Maintenance: %s |
AuthResponseFailMaintenanceDialog | -1100023 | [Auth-Common] Failed to show maintenance dialog. |
AuthNetworkErrorProcessLoginType | -1100024 | [Auth-Common] Network error occured on Prelogin: %s |
AuthNetworkErrorGuestLogin | -1100025 | [Auth-Common] Network error occured on Guest Login: %s |
AuthHIVESocialLoginCancelled | -1100026 | [Auth-Common] HIVE social login cancelled. |
AuthNetworkErrorLoginCenterLogin | -1100027 | [Auth-Common] Network error occured on Login Center Login: %s |
AuthNetworkErrorRequestUpdate | -1100028 | [Auth-Common] Network error occured on Request Update: %s |
AuthNetworkErrorRequestAdultConfirm | -1100029 | [Auth-Common] Network error occured on Adult Confirm. |
AuthInvalidParamVIDList | -1100030 | [Auth-Common] VID list is nil or empty |
AuthV4InvalidServerResponse | -1200001 | [AuthV4-Common] InvalidServerResponse |
AuthV4ServerResponseNotSuccessful | -1200002 | [AuthV4-Common] ServerResponseNotSuccessful |
AuthV4OnRunningV1 | -1200003 | [AuthV4-Common] OnRunningV1 |
AuthV4InProgressSignIn | -1200004 | [AuthV4-Common] SigninInProgress |
AuthV4InvalidConfigurationXml | -1200005 | [AuthV4-Common] InvalidConfigurationXml |
AuthV4InvalidSavedPlayerInfo | -1200006 | [AuthV4-Common] InvalidSavedPlayerInfo |
AuthV4AlreadyAuthorized | -1200007 | [AuthV4-Common] AlreadyAuthorized: %s |
AuthV4PlayerConfliction | -1200008 | [AuthV4-Common] PlayerConfliction |
AuthV4UserInBlacklist | -1200009 | [AuthV4-Common] UserInBlacklist |
AuthV4InvalidSession | -1200010 | [AuthV4-Common] Invalid Session: %s |
AuthV4PlayerConflictionHandlingFailed | -1200011 | [AuthV4-Common] PlayerConflictionHandlingFailed |
AuthV4InvalidParamDid | -1200012 | [AuthV4-Common] Failed to seup. DID is empty or nil |
AuthV4InvalidParamProviderTypeList | -1200013 | [AuthV4-Common] InvalidParamProviderTypeList |
AuthV4NotInitialized | -1200014 | [AuthV4-Common] Need Initialize first |
AuthV4SessionExist | -1200015 | [AuthV4-Common] Already authorized |
AuthV4SessionNotExist | -1200016 | [AuthV4-Common] Not exist remain session. please SignIn Provider. |
AuthV4InvalidProviderType | -1200017 | [AuthV4-Common] Provider type is invalid: %s |
AuthV4SigninFirst | -1200018 | [AuthV4-Common] Need Sign in first. |
AuthV4ProviderAlreadyConnected | -1200019 | [AuthV4-Common] ProviderAlreadyConnected: %s |
AuthV4ProviderAlreadyDisconnected | -1200020 | [AuthV4-Common] ProviderAlreadyDisconnected: %s |
AuthV4InvalidParamSelectedPlayerid | -1200021 | [AuthV4-Common] InvalidParamSelectedPlayerid |
AuthV4InvalidConflictionInfo | -1200022 | [AuthV4-Common] Conficltion info is invalid: %s |
AuthV4InvalidPlayeridList | -1200023 | [AuthV4-Common] PlayerID List is empty or nil |
AuthV4JsonException | -1200024 | [AuthV4-Common] JsonException : %s |
AuthV4InvalidSigninSelection | -1200025 | [AuthV4-Common] InvalidSigninSelection |
AuthV4NotSupportedProviderType | -1200026 | [AuthV4-Common] Requested provider type is not supported: %s |
AuthV4WebviewDialogError | -1200027 | [AuthV4-Common] WebviewDialogError: %s |
AuthV4InProgressSetup | -1200028 | [AuthV4-Common] Setup is already in progress |
AuthV4NetworkErrorGetProfile | -1200029 | [AuthV4-Common] Network error occured on Get Profile. |
AuthV4InProgressAuthDialog | -1200030 | [AuthV4-Common] Auth dialog in use. |
AuthV4InvalidParamViewID | -1200031 | [AuthV4-Common] View ID is empty or nil. |
AuthV4InvalidParamPlayerID | -1200032 | [AuthV4-Common] Invalid param player ID: %s |
AuthV4NetworkErrorCheckMaintenance | -1200033 | [AuthV4-Common] Network error occured on Check Maintenance. |
AuthV4NetworkErrorCheckBlacklist | -1200034 | [AuthV4-Common] Network error occured on Check Blacklist. |
AuthV4NetworkErrorIDP | -1200035 | [AuthV4-Common] Network error occured on Internal IDP. |
AuthV4ResponseFailProviderList | -1200036 | [AuthV4-Common] Response error. Provider list is empty. |
AuthV4NetworkErrorSigninGuest | -1200037 | [AuthV4-Common] Network error occured on Internal Signin Guest. type: %s |
AuthV4NetworkErrorSigninProvider | -1200038 | [AuthV4-Common] Network error occured on Internal Signin Provider. |
AuthV4ResponseFailProviderUserID | -1200039 | [AuthV4-Common] Response error. Provider user ID is empty. |
AuthV4NetworkErrorConnect | -1200040 | [AuthV4-Common] Network error occured on Connect |
AuthV4NetworkErrorDisconnect | -1200041 | [AuthV4-Common] Network error occured on Disconnect |
AuthV4NetworkErrorSelectIDP | -1200042 | [AuthV4-Common] Network error occured on Select IDP |
AuthV4ResponseFailGetIDP | -1200043 | [AuthV4-Common] Response error. IDP is empty or nil: %s |
AuthV4ResponseFailSelectedPlayerID | -1200044 | [AuthV4-Common] Response error. Selected player ID is empty or nil |
AuthV4CancelDialog | -1200045 | [AuthV4-Common] Dialog is cancelled by user. |
AuthV4ResponseFailSocialDialog | -1200046 | [AuthV4-Common] Response error. Social Dialog.: %s |
AuthV4ProfileNetworkError | -1200047 | [AuthV4-Profile] Network error is occurred. |
AuthV4ProfileResponseFail | -1200048 | [AuthV4-Profile] Response Fail. |
AuthV4MembershipNetworkError | -1200049 | [AuthV4-Membership] Network error is occurred. |
AuthV4MembershipResponseFail | -1200050 | [AuthV4-Membership] Response Fail. |
AuthV4NetworkErrorShowProfile | -1200051 | [AuthV4-Common] Network error is occured on show profile. |
AuthV4NetworkErrorShowInquiry | -1200053 | [AuthV4-Common] Network error is occured on show inquiry |
AuthV4NetworkErrorOnSignInFinish | -1200054 | [AuthV4-Common] Network error is occured on sign in finish |
AuthV4ResponseFailSigninProvider | -1200055 | [AuthV4-Common] Response Fail on Internal Signin Provider : %s |
AuthV4ResponseFailConnect | -1200056 | [AuthV4-Common] Response Fail on Connect : %s |
AuthV4ResponseFailCheckProvider | -1200057 | [AuthV4-Common] Response Fail on CheckProvider : %s |
AuthV4ResponseFailGetProfile | -1200058 | [AuthV4-Common] Response Fail on GetProfile : %s |
AuthV4ResponseFailGetFriendList | -1200059 | [AuthV4-Common] Response Fail on GetFriendList : %s |
AuthV4ResponseFailCheckMaintenance | -1200060 | [AuthV4-Common] Response Fail on CheckMaintenance : %s |
AuthV4ResponseFailCheckBlacklist | -1200061 | [AuthV4-Common] Response Fail on CheckBlacklist : %s |
AuthV4ResponseFailSigninGuest | -1200062 | [AuthV4-Common] Response Fail on SigninGuest : %s |
AuthV4ResponseFailDisconnect | -1200063 | [AuthV4-Common] Response Fail on Disconnect : %s |
AuthV4ResponseFailSelectIDP | -1200064 | [AuthV4-Common] Response Fail on SelectIDP : %s |
AuthV4ResponseFailSigninPlayer | -1200065 | [AuthV4-Common] Response Fail on Internal Signin Player : %s |
AuthV4ProviderLoginError | -1200101 | [AuthV4-Provider] ProviderLoginError |
AuthV4ProviderLogoutError | -1200102 | [AuthV4-Provider] Logout Failed |
AuthV4ProviderNotSupportGetFriends | -1200103 | [AuthV4-Provider] Not supported function Get Friends |
AuthV4FacebookUserCanceled | -1200201 | [AuthV4-ProviderFacebook] Login action is cancelled by user: %s |
AuthV4FacebookResponseFailLogin | -1200202 | [AuthV4-ProviderFacebook] Response error. Failed to login: %s |
AuthV4FacebookResponseFailGetFriends | -1200203 | [AuthV4-ProviderFacebook] Response error. Failed to get friends: %s |
AuthV4FacebookNetworkErrorUploadProfile | -1200204 | [AuthV4-ProvideRFacebook] Network error occured on upload profile. |
AuthV4FacebookResponseFailUploadProfile | -1200205 | [AuthV4-ProvideRFacebook] Response error. Failed to upload profile. |
AuthV4GoogleResponseFailLogin | -1200301 | [AuthV4-ProviderGoogle] ConnectionFailed |
AuthV4GoogleResponseFailLogout | -1200302 | [AuthV4-ProviderGoogle] DisconnetionFailed |
AuthV4GoogleNetworkErrorUploadProfile | -1200303 | [AuthV4-ProviderGoogle] Network error is occured on upload profile. |
AuthV4GoogleResponseFailUploadProfile | -1200304 | [AuthV4-ProviderGoogle] Response error. Failed to upload profile. |
AuthV4GoogleResponseFailShowAchievements | -1200305 | [AuthV4-ProviderGoogle] Response error. Failed to show achievements. |
AuthV4GoogleResponseFailShowLeaderboards | -1200306 | [AuthV4-ProviderGoogle] Response error. Failed to show leaderboards. |
AuthV4AppleLoginCancel | -1200401 | [AuthV4-ProviderApple] Login Cancelled: %s |
AuthV4AppleResponseFailLogin | -1200402 | [AuthV4-ProviderApple] Response error. login: %s |
AuthV4AppleResponseFailLoginVC | -1200403 | [AuthV4-ProviderApple] Response error. apple view controller is nil |
AuthV4AppleTimeOut | -1200404 | [AuthV4-ProviderApple] Timeout |
AuthV4AppleResponseFailReportScore | -1200405 | [AuthV4-ProviderApple] Response error. Failed to report score: %s |
AuthV4AppleInProgressGameCenterVC | -1200406 | [AuthV4-ProviderApple] GameCenterViewController in use. |
AuthV4AppleResponseFailLoadAchievements | -1200407 | [AuthV4-ProviderApple] Response error. Load achievements failed: %s |
AuthV4AppleResponseFailReportAchievements | -1200408 | [AuthV4-ProviderApple] Response error. Report achievements failed: %s |
AuthV4AppleResponseFailResetAchievements | -1200409 | [AuthV4-ProviderApple] Response error. Reset achievements failed: %s |
AuthV4VKInProgressLoginLogout | -1200501 | [AuthV4-ProviderVK] Login or logout in progress. |
AuthV4VKResponseFailLogin | -1200502 | [AuthV4-ProviderVK] Response Fail on request login : %s |
AuthV4VKInvalidParamSDK | -1200503 | [AuthV4-ProviderVK] VK SDK Setup is failed. |
AuthV4VKNotInitialized | -1200504 | [AuthV4-ProviderVK] VK SDK not initialized. |
AuthV4VKCancelLogin | -1200505 | [AuthV4-ProviderVK] Request authorization is cancelled |
AuthV4VKFailLogin | -1200506 | [AuthV4-ProviderVK] Request authorization is failed |
AuthV4VKInvalidSession | -1200507 | [AuthV4-ProviderVK] VK Session is invalid. |
AuthV4VKResponseFailGetFriends | -1200508 | [AuthV4-ProviderVK] Response Fail on get friends: %s |
AuthV4VKResponseFailLogout | -1200509 | [AuthV4-ProviderVK] Response Fail on request logout. |
AuthV4VKResponseFailUploadProfile | -1200510 | [AuthV4-ProviderVK] Response Fail |
AuthV4VKNetworkErrorUploadProfile | -1200511 | [AuthV4-ProviderVK] NetworkError |
AuthV4WechatInProgressLoginLogout | -1200601 | [AuthV4-ProviderWeChat] Login or logout in progress. |
AuthV4WechatResponseFailLogin | -1200602 | [AuthV4-ProviderWeChat] Response error. Failed to login: %s |
AuthV4WechatNotSupportedRequest | -1200603 | [AuthV4-ProviderWeChat] Request is not supported: %s |
AuthV4WechatResponseFailUserInfo | -1200604 | [AuthV4-ProviderWeChat] Request error. failed to get user info: %s |
AuthV4WechatNetworkErrorUserInfo | -1200605 | [AuthV4-ProviderWeChat] Request error. NetworkError while getting user info: %s |
AuthV4WechatNetworkError | -1200606 | [AuthV4-ProviderWeChat] NetworkError |
AuthV4WechatResponseFail | -1200607 | [AuthV4-ProviderWeChat] ResponseFail |
AuthV4WechatNetworkErrorLogin | -1200608 | [AuthV4-ProviderWeChat] NetworkError. Failed to login. |
AuthV4WechatInvalidParamAppId | -1200609 | [AuthV4-ProviderWeChat] Wechat SDK Setup is failed. App ID / App Secret is empty or nil: %s |
AuthV4HIVEInProgressDialog | -1200701 | [AuthV4-ProviderHIVE] Dialog in use |
AuthV4HIVEDialogCancel | -1200702 | [AuthV4-ProviderHIVE] Dialog is cancelled |
AuthV4HIVENetworkErrorUploadProfile | -1200703 | [AuthV4-ProviderHIVE] Network error is occured on upload profile. |
AuthV4HIVEResponseFailUploadProfile | -1200704 | [AuthV4-ProviderHIVE] Response error. failed to upload profile. |
AuthV4HIVEResponseFailLogin | -1200705 | [AuthV4-ProviderHIVE] Response error. failed to login. |
AuthV4QQInProgressLoginLogout | -1200801 | [AuthV4-ProviderQQ] Login or logout in progress. |
AuthV4QQInvalidParamAppID | -1200802 | [AuthV4-ProviderQQ] QQ App ID Not found: %s |
AuthV4QQResponseFailLogin | -1200803 | [AuthV4-ProviderQQ] login session is not valid. |
AuthV4QQCancelLogin | -1200804 | [AuthV4-ProviderQQ] login is cancelled. |
AuthV4QQNetworkError | -1200805 | [AuthV4-ProviderQQ] Network error is occurred. |
AuthV4QQNetworkErrorUploadProfile | -1200806 | [AuthV4-ProviderQQ] Network error is occurred on upload profile |
AuthV4QQResponseFailUploadProfile | -1200807 | [AuthV4-ProviderQQ] Response error. Failed to upload profile |
AuthV4QQCancelUploadProfile | -1200808 | [AuthV4-ProviderQQ] Upload profiel is cancelled. |
AuthV4QQResponseFailLogout | -1200809 | [AuthV4-ProviderQQ] Response error. Failed to logout. |
AuthV4QQNotInitialized | -1200810 | [AuthV4-ProviderQQ] QQ SDK not initialized. |
SocialResponseFailDismissDialog | -2000001 | [Social-Common] InvalidParamClose |
SocialCancelDismissDialog | -2000002 | [Social-Common] Canceled |
SocialGoogleNotInitialized | -2000101 | [Social-Google] Not initialized. initialize user first. |
SocialGoogleResponseFailGetProfile | -2000102 | [Social-Google] Fail to get profile. check response |
SocialGoogleInProgressConnect | -2000103 | [Social-Google] In progress. connect. |
SocialGoogleResponseFailConnect | -2000104 | [Social-Google] Response error. Failed to connect. |
SocialGoogleCancelGetProfile | -2000105 | [Social-Google] Get profile is cancelled. |
SocialGoogleCancelConnect | -2000106 | [Social-Google] Connect is cancelled. |
SocialGoogleNetworkErrorUpdateServerFlag | -2000107 | [Social-Google] Network error is occured on update server flag. |
SocialGoogleResponseFailUpdateServerFlag | -2000108 | [Social-Google] Response error. Failed to update server flag. |
SocialFacebookNotInitialized | -2000201 | [Social-Facebook] Not initialized. initialize user first. |
SocialFacebookResponseFailGetProfile | -2000202 | [Social-Facebook] Fail to get profile. check response: %s |
SocialFacebookCancelGetProfile | -2000203 | [Social-Facebook] Get profile cancelled. |
SocialFacebookResponseFailGetFriends | -2000204 | [Social-Facebook] Fail to get friends. check response: %s |
SocialFacebookCancelGetFriends | -2000205 | [Social-Facebook] Get friends cancelled. |
SocialFacebookResponseFailSendMessage | -2000206 | [Social-Facebook] Fail to send message. check response: %s |
SocialFacebookCancelSendMessage | -2000207 | [Social-Facebook] Send message cancelled. |
SocialFacebookMessageDialogShowFail | -2000208 | [Social-Facebook] Fail to show message dialog. |
SocialFacebookResponseFailShowInvitation | -2000209 | [Social-Facebook] Fail to show invite dialog: %s |
SocialFacebookCancelShowInvitation | -2000210 | [Social-Facebook] Show invite dialog cancelled |
SocialFacebookInvalidParamPost | -2000211 | [Social-Facebook] Invalid paramter for posting to facebook. |
SocialFacebookPostDialogShowFail | -2000212 | [Social-Facebook] Fail to show post dialog. |
SocialFacebookShareFail | -2000213 | [Social-Facebook] Fail to share: %s |
SocialFacebookShareCancelled | -2000214 | [Social-Facebook] Sharing cancelled. |
SocialFacebookSendInvitationFail | -2000215 | [Social-Facebook] Fail to send invitation: %s |
SocialFacebookSendInvitationCancelled | -2000216 | [Social-Facebook] Send invitation is cancelled. |
SocialFacebookCancelPost | -2000217 | [Social-Facebook] Posting is cancelled. |
SocialFacebookResponseFailPost | -2000218 | [Social-Facebook] Response error. Failed to posting. |
SocialFacebookOperationException | -2000219 | [Social-Facebook] Operation exception is occured. |
SocialFacebookServiceException | -2000220 | [Social-Facebook] Service exception is occured. |
SocialFacebookException | -2000221 | [Social-Facebook] Exception is occured. |
SocialHIVENotInitialized | -2000301 | [Social-HIVE] Not initialized. initialize user first. |
SocialHIVENetworkErrorGetMyProfile | -2000302 | [Social-HIVE] Network error occured on Get My Profile: %s |
SocialHIVEInvalidParamSetMyProfile | -2000303 | [Social-HIVE] Invalid parameter. Comment is required |
SocialHIVENetworkErrorSetMyProfile | -2000304 | [Social-HIVE] Network error occured on Set My Profile: %s |
SocialHIVENetworkErrorGetFriends | -2000305 | [Social-HIVE] Network error occured on Get Friends: %s |
SocialHIVEInvalidSession | -2000306 | [Social-HIVE] Invalid session. Only HIVE user is permitted |
SocialHIVEInvalidParamVID | -2000307 | [Social-HIVE] Invalid parameter. Valid VID is required. |
SocialHIVENetworkErrorGetVIDByUIDList | -2000308 | [Social-HIVE] Network error occured on Get VID By UID List: %s |
SocialHIVENetworkErrorGetUIDByVIDList | -2000309 | [Social-HIVE] Network error occured on Get UID By VID List: %s |
SocialHIVEInvalidParamContentSendMessage | -2000310 | [Social-HIVE] Invalid parameter. Message content is required. |
SocialHIVENetworkErrorSendMessage | -2000311 | [Social-HIVE] Network error occured on Send Message: %s |
SocialHIVEInvalidParamReceiptSendMessage | -2000312 | [Social-HIVE] Invalid parameter. Need valid receipts for Send Message. |
SocialHIVEInvalidParamUID | -2000313 | [Social-HIVE] Invalid parameter. UID is empty or nil |
SocialHIVEInProgressSocialDialog | -2000314 | [Social-HIVE] In progress. SocialDialog is already showing. |
SocialHIVESocialDialogClosed | -2000315 | [Social-HIVE] SocialDialog is closed. |
SocialHIVENetworkErrorGetBadgeInfo | -2000316 | [Social-HIVE] Network error occured on Get Badge Info: %s |
SocialHIVEResponseFailGetMyProfile | -2000317 | [Social-HIVE] Response error is occured on Get My Profile: %s |
SocialHIVEResponseFailSetMyProfile | -2000318 | [Social-HIVE] Response error is occured on Set My Profile: %s |
SocialHIVEResponseFailGetFriends | -2000319 | [Social-HIVE] Response error is occured on Get Friends: %s |
SocialHIVEResponseFailGetVID | -2000320 | [Social-HIVE] Response error occured on Get VID: %s |
SocialHIVEResponseFailInvalidVIDList | -2000321 | [Social-HIVE] Server response vid list does not match. |
SocialHIVEResponseFailGetUID | -2000322 | [Social-HIVE] Response error occured on Get UID: %s |
SocialHIVEResponseFailInvalidUIDList | -2000323 | [Social-HIVE] Server response uid list does not match. |
SocialHIVEResponseFailSendMessage | -2000324 | [Social-HIVE] Response error is occured on Send Message: %s |
SocialHIVEResponseFailGetBadgeInfo | -2000325 | [Social-HIVE] Response error is occured on Get badge: %s |
SocialHIVEResponseFailDialogWebView | -2000326 | [Social-HIVE] WebView error is occured in social dialog: %s |
SocialHIVEResponseFailSocialDialog | -2000327 | [Social-HIVE] Social dialog error is occured. |
SocialHIVEInvalidParamFriendType | -2000328 | [Social-HIVE] Requested friend type %s is not supported. |
SocialHIVEResponseFailGetProfiles | -2000329 | [Social-HIVE] Response error. Failed to get profiles. |
SocialHIVEInvalidParamGetProfiles | -2000330 | [Social-HIVE] Invalid param get profiles. |
SocialHIVEResponseFail | -2000331 | [Social-HIVE] Response error. |
SocialHIVEInvalidParamSendMessage | -2000332 | [Social-HIVE] Invalid parameter. Message content is required. |
SocialHIVEInvalidParamSendInvitationMessage | -2000333 | [Social-HIVE] Invalid parameter. Send invitation message. |
SocialHIVEResponseFailGetPictureFromGallery | -2000334 | [Social-HIVE] Response error. Failed to get picture from gallery. |
SocialHIVEResponseFailGetPictureFromCamera | -2000335 | [Social-HIVE] Response error. Failed to get picture from camera. |
SocialHIVENetworkErrorSendInvitationMessage | -2000336 | [Social-HIVE] Network error is occured on send invitation message. |
PromotionNotInitialized | -3000001 | [Promotion] Not Initialized. Initialize User First |
PromotionAlreadyShowing | -3000002 | [Promotion] Promotion View is already showing. |
PromotionNetworkErrorShowPromotion | -3000003 | [Promotion] Network error occured on Show Promotion: %s |
PromotionNetworkErrorShowCustomContents | -3000004 | [Promotion] Network error occured on Show Custom Contents: %s |
PromotionNetworkErrorShowOfferwall | -3000005 | [Promotion] Network error occured on Show Offerwall |
PromotionNetworkErrorShowReview | -3000006 | [Promotion] Network error occured on Show Review: %s |
PromotionNetworkErrorGetViewInfo | -3000007 | [Promotion] Network error occured on Get View Info: %s |
PromotionNetworkErrorGetBadgeInfo | -3000008 | [Promotion] Network error occured on Get Badge Info: %s |
PromotionShowDialogFail | -3000009 | [Promotion] Fail to show Dialog. Please check data from promotion server: %s |
PromotionShowReviewFail | -3000010 | [Promotion] Fail to show Review Dialog. Please check data from promotion server: %s |
PromotionGetViewInfoError | -3000011 | [Promotion] Fail to get view info. Please check data from promotion server: %s |
PromotionGetBadgeInfoError | -3000012 | [Promotion] Fail to get badge info. Please check data from promotion server: %s |
PromotionResponseFailShowPromotion | -3000013 | [Promotion] Response error. Failed to show promotion. |
PromotionResponseFailShowCustomContents | -3000014 | [Promotion] Response error. Failed to show custom contents. |
PromotionResponseFailShowOfferwall | -3000015 | [Promotion] Response error. Failed to show offerwall. |
PromotionResponseFailShowReview | -3000016 | [Promotion] Response error. Failed to show review. |
PromotionResponseFailGetViewInfo | -3000017 | [Promotion] Response error. Failed to get view info |
PromotionResponseFailGetBadgeInfo | -3000018 | [Promotion] Response error. Failed to get badge info. |
PromotionNetworkErrorShowExit | -3000019 | [Promotion] Network error is occured on show exit. |
PromotionNetworkErrorGetAppInvitationData | -3100001 | [Promotion UA] Network error occured on Get App Inviation data: %s |
PromotionResponseFailGetAppInvitationData | -3100002 | [Promotion UA] Fail to get App Invitation Data. Please check data from promotion server: %s |
UserEngagementResponseFail | -3200001 | [Promotion UE] Response error. |
UserEngagementAlreadySetReady | -3200002 | [Promotion UE] Already in ready to UE. |
UserEngagementHandlerNotRegistered | -3200003 | [Promotion UE] Handler not registered. |
UserEngagementNotLogined | -3200004 | [Promotion UE] Unauthorized User. Please do login first. |
UserEngagementEmptyCouponId | -3200005 | [Promotion UE] Coupon value is empty. |
UserEngagementEmptyMarketPid | -3200006 | [Promotion UE] Market pid value is empty. |
UserEngagementListenerNotRegistered | -3200007 | [Promotion UE] Listener is not registered. |
PushNotInitialized | -4000001 | [Push] Not initialized. initialize user first. |
PushInvalidParamLocalPush | -4000002 | [Push] Invalid Param Local Push |
PushInvalidParamRemotePush | -4000003 | [Push] Invalid Param Remote Push |
PushNetworkError | -4000004 | [Push] Network Error |
PushResponseFailGetRemotePush | -4000005 | [Push] Bad response on Get Remote Push: %s |
PushResponseFailSetRemotePush | -4000006 | [Push] Bad response on Set Remote Push: %s |
IAPNotInitialize | -6000001 | [IAP] Not Initialized. Initialize User First. |
IAPAlreadyInInitialize | -6000002 | [IAP] Already IAP Initialized. |
IAPNetworkError | -6000003 | [IAP] Network error occured: %s |
IAPNotSupportedMarket | -6000004 | [IAP] Invalid or NOT supported market identifier. (%s) |
IAPNeedLogin | -6000005 | [IAP] Unauthorized User. Please do login first. |
IAPNeedShopInitialize | -6000006 | [IAP] Not Shop Initialized. Initialize Shop First. |
IAPNotSupportedOSVersion | -6000007 | [IAP] Unsupported OS Version. |
IAPNeedRestore | -6000008 | [IAP] Unfinished transactions: %s exists. Need restore. |
IAPRestoreNotOwned | -6000009 | [IAP] Restore Item not owned. |
IAPNothingToRestore | -6000010 | [IAP] Nothing to restore. |
IAPFailRestore | -6000011 | [IAP] Fail to restore. |
IAPRestrictPayments | -6000012 | [IAP] This device is not able or allowed to make payments. |
IAPNetworkJsonException | -6000013 | [IAP] Json Exception during IAP Network |
IAPMarketNotSupportedAPI | -6000014 | [IAP] Market did not support this API |
IAPFailMarketInitialize | -6000015 | [IAP] Market data is nothing |
IAPResponseError | -6000016 | [IAP] Network response exception is occured. |
IAPInProgressPurchasing | -6000101 | [IAP] Already in progress purchasing. |
IAPInProgressRestoring | -6000102 | [IAP] Already in progress restoring. |
IAPInProgressCheckPromotePurchase | -6000103 | [IAP] Already in progress check promote purchase. |
IAPInProgressConnectingAppStore | -6000104 | [IAP] Already in progress connecting App Store. |
IAPInProgressMarketSelection | -6000105 | [IAP] Already in progress market selection. |
IAPAppStoreError | -6000201 | [IAP] App Store Error: %s |
IAPAppStoreResponseEmpty | -6000202 | [IAP] Fail to get response data from App Store. Response data is empty. |
IAPCannotFindGamePID | -6000301 | [IAP] Can not find game pid matching with market pid, PID is empty or nil. |
IAPProductNotExist | -6000302 | [IAP] Can not find product in IAP Server: %s |
IAPEmptyMarketPID | -6000303 | [IAP] Fail to request purchase product. MarketPID is empty or nil. |
IAPFailCreateSKPayment | -6000304 | [IAP] SKPayment create failed. |
IAPEmptyTransaction | -6000305 | [IAP] Fail to request purchase. Purchased transaction is empty. |
IAPEmptyProduct | -6000306 | [IAP] Can not find market product using marker pid: %s |
IAPCancelPayment | -6000307 | [IAP] Failed to purchase(Cancelled): %s |
IAPFailPayment | -6000308 | [IAP] Failed to purchase |
IAPInvalidMarketPID | -6000309 | [IAP] Failed to convert to MarketPIDs to PID set. |
IAPPurchaseParamJsonException | -6000310 | [IAP] Purchase parameter json exception is occured. |
IAPShopInfoParamJsonException | -6000311 | [IAP] Shopinfo parameter json exception is occured. |
IAPBadgeParamJsonException | -6000312 | [IAP] Badge parameter json exception is occured. |
IAPInvalidParamEmptyMarketPID | -6000401 | [IAP] Game pid is empty. |
IAPInvalidParamLocationCode | -6000402 | [IAP] Location code is empty |
IAPBlockedUser | -6000501 | [IAP] This user has been blocked: %s |
IAPPromoCodeMatchMultiMarketPID | -6000502 | [IAP] Multiple product matched in market pid: %s |
IAPPromoCodeNotMatchMarketPID | -6000503 | [IAP] No product matched in market pid: %s |
IAPPromoCodeAlreadyUsed | -6000504 | [IAP] This Promotion code already used: %s |
IAPAppleReceiptNotConnected | -6000505 | [IAP] Apple receipt verifying server can not connected: %s |
IAPServerDefaultError | -6000506 | [IAP] IAP server error: %s |
IAPInitializeMarketListIsEmpty | -6000601 | [IAP] Resopnse failed. Market list is empty. |
IAPInitializeMarketURLISEmpty | -6000602 | [IAP] Resopnse failed. Market url is empty. |
IAPEmptyMarketURL | -6000603 | [IAP] Selected market URL is empty. |
IAPNotSelectedMarket | -6000604 | [IAP] Failed to select market. |
IAPPlayStoreLaunchPurchaseFlowException | -6000701 | [IAP] PlayStore launchpurchaseflow exception is occured. |
IAPPlayStoreSetupFail | -6000702 | [IAP] PlayStore start setup fail |
IAPPlayStoreQueryInventoryFail | -6000703 | [IAP] PlayStore query inventory fail when initialize |
IAPOneStoreProductListEmpty | -6000801 | [IAP] OneStore Product List is empty. |
IAPOneStoreProductNetworkError | -6000802 | [IAP] OneStore requestProductInfo network fail |
IAPOneStoreProductInfoError | -6000803 | [IAP] OneStore requestProductInfo fail. |
IAPOneStoreInvalidRequestID | -6000804 | [IAP] OneStore requestID is invalid |
IAPOneStorePurchaseError | -6000805 | [IAP] OneStore purchase fail |
IAPOneStoreNetworkNullError | -6000806 | [IAP] Onestore Network response null error |
IAPOneStoreNetworkInvalidError | -6000807 | [IAP] Onestore Network response invalid error |
IAPLebiInitializeNetworkError | -6000901 | [IAP] Lebi Initialize fail |
IAPLebiInitializeJsonException | -6000902 | [IAP] Lebi initialize json exception is occured. |
IAPLebiPurchaseNetworkError | -6000903 | [IAP] Lebi purchase fail |
IAPLebiPurchaseJsonException | -6000904 | [IAP] Lebi purchase json exception is occured. |
IAPLebiVerifyOrderNetworkError | -6000905 | [IAP] Lebi verifyorder fail |
IAPLebiVerifyOrderJsonException | -6000906 | [IAP] Lebi verifyorder json exception is occured. |
IAPLebiBalanceNetworkError | -6000907 | [IAP] Lebi balance fail |
IAPLebiBalanceParamJsonException | -6000908 | [IAP] Lebi balance json exception is occured. |
IAPLebiPostException | -6000909 | [IAP] Lebi post exception is occured. |
IAPLebiInternalRequestException | -6000910 | [IAP] Lebi Internal request exception is occured. |
IAPLebiRestoreNetworkError | -6000911 | [IAP] Lebi restore create invalid response data |
IAPV4NotInitialize | -6100001 | [IAPv4] Not Initialized. Initialize User First. |
IAPV4NetworkError | -6100002 | [IAPv4] Network error occured: %s |
IAPV4NotSupportedMarket | -6100003 | [IAPv4] Market is not supported. |
IAPV4NeedLogin | -6100004 | [IAPv4] Unauthorized User. Please do login first. |
IAPV4NeedMarketConnect | -6100005 | [IAPv4] Not Shop Initialized. Initialize Shop First. |
IAPV4NeedRestore | -6100006 | [IAPv4] Unfinished transactions: %s exists. Need restore. |
IAPV4NothingToRestore | -6100007 | [IAPv4] Nothing to restore. |
IAPV4FailToRestore | -6100008 | [IAPv4] Fail to restore. |
IAPV4RestrictPayments | -6100009 | [IAPv4] This device is not able or allowed to make payments. |
IAPV4FailMarketConnect | -6100010 | [IAPv4] Market data is nothing |
IAPV4ResponseError | -6100011 | [IAPv4] response parsing exception is occured. |
IAPV4MarketNotSupportedAPI | -6100012 | [IAPv4] Market did not support this API |
IAPV4InProgressMarketConnect | -6100101 | [IAPv4] Already in progress market connect. |
IAPV4InProgressPurchasing | -6100102 | [IAPv4] Already in progress purchasing. |
IAPV4InProgressRestoring | -6100103 | [IAPv4] Already in progress restoring. |
IAPV4InProgressCheckPromote | -6100104 | [IAPv4] Already in progress check promote purchase. |
IAPV4InProgressConnectAppStore | -6100105 | [IAPv4] Already in progress connect App Store. |
IAPV4InProgressMarketSelect | -6100106 | [IAPv4] Already in progress market select. |
IAPV4AppStoreError | -6100201 | [IAPv4] App Store Error: %s |
IAPV4AppStoreResponseEmpty | -6100202 | [IAPv4] Fail to get response data from App Store. Response data is empty. |
IAPV4ProductNotExsitInAppStore | -6100203 | [IAPv4] Can not find product: %s |
IAPV4FinishMarketPidEmpty | -6100301 | [IAPv4] Finished market PID is empty or nil. |
IAPV4PromoteMarketPidEmpty | -6100302 | [IAPv4] Market pid is empty. |
IAPV4FailCreateSKPayment | -6100303 | [IAPv4] Fail to create payment. |
IAPV4FailToConvertNSSet | -6100304 | [IAPv4] Fail to conver to MarketPids to Pid set. |
IAPV4InvalidLogType | -6100305 | [IAPv4] Invalid log type. |
IAPV4ProductNotExist | -6100306 | [IAPv4] Failed to request purchase product. Market product not found. |
IAPV4RequestProductJsonException | -6100307 | [IAPv4] reqeust Product Json Exception is occured. |
IAPV4PurchaseParamJsonException | -6100308 | [IAPv4] Purchase parameter json exception is occured. |
IAPV4RequestMarketJsonException | -6100309 | [IAPv4] reqeust Market Json Exception is occured. |
IAPV4ProductInfoJsonException | -6100310 | [IAPv4] Product Info Json exception is occured. |
IAPV4CancelPayment | -6100311 | [IAPv4] Failed to purchase(Cancelled) |
IAPV4FailPayment | -6100312 | [IAPv4] Failed to purchase |
IAPV4EmptyParamMarketPID | -6100401 | [IAPv4] Market pid is empty. |
IAPV4EmptyMarketList | -6100501 | [IAPv4] Market list from IAP server is empty. |
IAPV4EmptyMarketURL | -6100502 | [IAPv4] Response failed. Market selection URL is emptry or nil. |
IAPV4MarketPidListEmptyInIAPServer | -6100503 | [IAPv4] Failed to request product indentifiers. MarketPID is empty or nil. |
IAPV4EmptyProductList | -6100504 | [IAPv4] IAP need get product info. get product info or showPayment API. |
IAPV4ProductNotExistInIAPServer | -6100505 | [IAPv4] Invalid parameter. Unknown market product identifier: %s |
IAPV4PlayStoreLaunchPurchaseFlowException | -6100701 | [IAPv4] PlayStore launchpurchaseflow exception is occured. |
IAPV4PlayStoreSetupFail | -6100702 | [IAPv4] PlayStore start setup fail |
IAPV4PlayStoreQueryInventoryFail | -6100703 | [IAPv4] PlayStore query inventory fail when initialize |
IAPV4PlayStoreFinishFail | -6100704 | [IAPv4] PlayStore Finish fail. |
IAPV4OneStoreProductListEmpty | -6100801 | [IAPv4] OneStore Product List is empty. |
IAPV4OneStoreProductNetworkError | -6100802 | [IAPv4] OneStore requestProductInfo network fail |
IAPV4OneStoreProductInfoError | -6100803 | [IAPv4] OneStore requestProductInfo fail. |
IAPV4OneStoreInvalidRequestID | -6100804 | [IAPv4] OneStore requestID is invalid |
IAPV4OneStorePurchaseError | -6100805 | [IAPv4] OneStore purchase fail |
IAPV4OneStoreNetworkNullError | -6100806 | [IAPv4] Onestore Network response null error |
IAPV4OneStoreNetworkInvalidError | -6100807 | [IAPv4] Onestore Network response invalid error |
IAPV4OneStoreFinishFail | -6100808 | [IAPv4] OneStore Finish fail. |
IAPV4LebiInitializeNetworkError | -6100901 | [IAPv4] Lebi Initialize fail |
IAPV4LebiInitializeJsonException | -6100902 | [IAPv4] Lebi initialize json exception is occured. |
IAPV4LebiPurchaseNetworkError | -6100903 | [IAPv4] Lebi purchase fail |
IAPV4LebiPurchaseJsonException | -6100904 | [IAPv4] Lebi purchase json exception is occured. |
IAPV4LebiVerifyOrderNetworkError | -6100905 | [IAPv4] Lebi verifyorder fail |
IAPV4LebiVerifyOrderJsonException | -6100906 | [IAPv4] Lebi verifyorder json exception is occured. |
IAPV4LebiBalanceNetworkError | -6100907 | [IAPv4] Lebi balance fail |
IAPV4LebiBalanceParamJsonException | -6100908 | [IAPv4] Lebi balance json exception is occured. |
IAPV4LebiPostException | -6100909 | [IAPv4] Lebi post exception is occured. |
IAPV4LebiInternalRequestException | -6100910 | [IAPv4] Lebi Internal request exception is occured. |
IAPV4LebiRestoreNetworkError | -6100911 | [IAPv4] Lebi restore create invalid response data |
IAPV4LebiCancel | -6100912 | [IAPv4] Lebi Charge cancel. |
IAPV4LebiFinishFail | -6100913 | [IAPv4] Lebi Finish fail. |
Unity
Key Name | Code | Details |
Success | 0 | Success. |
CommonHTTPConnectionException | -1 | [Common] HTTP Connection exception. |
CommonHTTPConnectionOpenException | -2 | [Common] HTTP Connection open exception. |
CommonHTTPContentEncodingNotSupported | -3 | [Common] HTTP Content encoding not supported. |
CommonHTTPDecryptionFailed | -4 | [Common] HTTP Decryption failed. |
CommonHTTPResponseException | -5 | [Common] HTTP Response exception. |
CommonHTTPInvalidBody | -6 | [Common] HTTP body is nil. |
CommonHTTPInvalidJSON | -7 | [Common] HTTP body has invalid JSON: %1 |
CommonHTTPInvalidURLRequest | -8 | [Common] HTTP Failed to create NSMutableURLRequest. |
CommonHTTPInvalidURL | -9 | [Common] HTTP Failed to create NSURL from urlPath: %1 |
CommonHTTPGzipDecodeFailed | -10 | [Common] GZip decoding is failed. |
CommonHTTPNetworkError | -11 | [Common] Network error is occurred on handle response: %1 |
TestError | -800 | [Test] Error message. |
TestWithNSError | -801 | [Test] NSError message: %1 |
TestWithNSString | -802 | [Test] NSString message: %1 |
TestWithNSDictionary | -803 | [Test] NSDictionary message: %1 |
CommonUnknown | -999 | [Common] Unknown |
AuthNotInitialized | -1100001 | [Auth-Common] Not Initialized |
AuthInvalidServerResponse | -1100002 | [Auth-Common] Invalid Server Response |
AuthServerResponseNotSuccessful | -1100003 | [Auth-Common] Server Response Not Successful. string: %1 |
AuthInvalidUser | -1100004 | [Auth-Common] Invalid User |
AuthUserCanceled | -1100005 | [Auth-Common] User Canceled |
AuthInProgressLoginLogout | -1100006 | [Auth-Common] Login or logout is already in progress |
AuthInvalidSelectedAccountURL | -1100007 | [Auth-Common] Invalid Selected AccountURL |
AuthInvalidSelectedVID | -1100008 | [Auth-Common] Selected VID is empty or null |
AuthOnRunningV4 | -1100009 | [Auth-Common] On Running V4 |
AuthInvalidConfigurationXml | -1100010 | [Auth-Common] Invalid Configuration Xml |
AuthInvalidParamLoginType | -1100011 | [Auth-Common] Invalid Param Login Type: %1 |
AuthInvalidParamVID | -1100012 | [Auth-Common] Invalid Param Vid: %1 |
AuthInvalidParamSessionKey | -1100013 | [Auth-Common] Invalid Param Session Key |
AuthInvalidGuestSession | -1100014 | [Auth-Common] Invalid Guest Session |
AuthUserInBlacklist | -1100015 | [Auth-Common] User In Blacklist: %1 |
AuthInvalidAccountSession | -1100016 | [Auth-Common] Invalid Account Session |
AuthJsonException | -1100017 | [Auth-Common] JSON Parsing failed. error: %1 |
AuthCanceled | -1100018 | [Auth-Common] Canceled |
AuthDialogAlreadyUsing | -1100019 | [Auth-Common] Dialog is already using. |
AuthNetworkErrorShowLoginSelection | -1100020 | [Auth-Common] Network error occured on Get My Profile: %1 |
AuthNetworkErrorCheckMaintenance | -1100021 | [Auth-Common] Network error occured on Check Maintenance |
AuthResponseFailCheckMaintenance | -1100022 | [Auth-Common] Bad response on Check Maintenance: %1 |
AuthResponseFailMaintenanceDialog | -1100023 | [Auth-Common] Failed to show maintenance dialog. |
AuthNetworkErrorProcessLoginType | -1100024 | [Auth-Common] Network error occured on Prelogin: %1 |
AuthNetworkErrorGuestLogin | -1100025 | [Auth-Common] Network error occured on Guest Login: %1 |
AuthHIVESocialLoginCancelled | -1100026 | [Auth-Common] HIVE social login cancelled. |
AuthNetworkErrorLoginCenterLogin | -1100027 | [Auth-Common] Network error occured on Login Center Login: %1 |
AuthNetworkErrorRequestUpdate | -1100028 | [Auth-Common] Network error occured on Request Update: %1 |
AuthNetworkErrorRequestAdultConfirm | -1100029 | [Auth-Common] Network error occured on Adult Confirm. |
AuthInvalidParamVIDList | -1100030 | [Auth-Common] VID list is nil or empty |
AuthV4InvalidServerResponse | -1200001 | [AuthV4-Common] InvalidServerResponse |
AuthV4ServerResponseNotSuccessful | -1200002 | [AuthV4-Common] ServerResponseNotSuccessful |
AuthV4OnRunningV1 | -1200003 | [AuthV4-Common] OnRunningV1 |
AuthV4InProgressSignIn | -1200004 | [AuthV4-Common] SigninInProgress |
AuthV4InvalidConfigurationXml | -1200005 | [AuthV4-Common] InvalidConfigurationXml |
AuthV4InvalidSavedPlayerInfo | -1200006 | [AuthV4-Common] InvalidSavedPlayerInfo |
AuthV4AlreadyAuthorized | -1200007 | [AuthV4-Common] AlreadyAuthorized: %1 |
AuthV4PlayerConfliction | -1200008 | [AuthV4-Common] PlayerConfliction |
AuthV4UserInBlacklist | -1200009 | [AuthV4-Common] UserInBlacklist |
AuthV4InvalidSession | -1200010 | [AuthV4-Common] Invalid Session: %1 |
AuthV4PlayerConflictionHandlingFailed | -1200011 | [AuthV4-Common] PlayerConflictionHandlingFailed |
AuthV4InvalidParamDid | -1200012 | [AuthV4-Common] Failed to seup. DID is empty or nil |
AuthV4InvalidParamProviderTypeList | -1200013 | [AuthV4-Common] InvalidParamProviderTypeList |
AuthV4NotInitialized | -1200014 | [AuthV4-Common] Need Initialize first |
AuthV4SessionExist | -1200015 | [AuthV4-Common] Already authorized |
AuthV4SessionNotExist | -1200016 | [AuthV4-Common] Not exist remain session. please SignIn Provider. |
AuthV4InvalidProviderType | -1200017 | [AuthV4-Common] Provider type is invalid: %1 |
AuthV4SigninFirst | -1200018 | [AuthV4-Common] Need Sign in first. |
AuthV4ProviderAlreadyConnected | -1200019 | [AuthV4-Common] ProviderAlreadyConnected: %1 |
AuthV4ProviderAlreadyDisconnected | -1200020 | [AuthV4-Common] ProviderAlreadyDisconnected: %1 |
AuthV4InvalidParamSelectedPlayerid | -1200021 | [AuthV4-Common] InvalidParamSelectedPlayerid |
AuthV4InvalidConflictionInfo | -1200022 | [AuthV4-Common] Conficltion info is invalid: %1 |
AuthV4InvalidPlayeridList | -1200023 | [AuthV4-Common] PlayerID List is empty or nil |
AuthV4JsonException | -1200024 | [AuthV4-Common] JsonException |
AuthV4InvalidSigninSelection | -1200025 | [AuthV4-Common] InvalidSigninSelection |
AuthV4NotSupportedProviderType | -1200026 | [AuthV4-Common] Requested provider type is not supported: %1 |
AuthV4WebviewDialogError | -1200027 | [AuthV4-Common] WebviewDialogError: %1 |
AuthV4InProgressSetup | -1200028 | [AuthV4-Common] Setup is already in progress |
AuthV4NetworkErrorGetProfile | -1200029 | [AuthV4-Common] Network error occured on Get Profile. |
AuthV4InProgressAuthDialog | -1200030 | [AuthV4-Common] Auth dialog in use. |
AuthV4InvalidParamViewID | -1200031 | [AuthV4-Common] View ID is empty or nil. |
AuthV4InvalidParamPlayerID | -1200032 | [AuthV4-Common] Invalid param player ID: %1 |
AuthV4NetworkErrorCheckMaintenance | -1200033 | [AuthV4-Common] Network error occured on Check Maintenance. |
AuthV4NetworkErrorCheckBlacklist | -1200034 | [AuthV4-Common] Network error occured on Check Blacklist. |
AuthV4NetworkErrorIDP | -1200035 | [AuthV4-Common] Network error occured on Internal IDP. |
AuthV4ResponseFailProviderList | -1200036 | [AuthV4-Common] Response error. Provider list is empty. |
AuthV4NetworkErrorSigninGuest | -1200037 | [AuthV4-Common] Network error occured on Internal Signin Guest. type: %1 |
AuthV4NetworkErrorSigninProvider | -1200038 | [AuthV4-Common] Network error occured on Internal Signin Provider. |
AuthV4ResponseFailProviderUserID | -1200039 | [AuthV4-Common] Response error. Provider user ID is empty. |
AuthV4NetworkErrorConnect | -1200040 | [AuthV4-Common] Network error occured on Connect |
AuthV4NetworkErrorDisconnect | -1200041 | [AuthV4-Common] Network error occured on Disconnect |
AuthV4NetworkErrorSelectIDP | -1200042 | [AuthV4-Common] Network error occured on Select IDP |
AuthV4ResponseFailGetIDP | -1200043 | [AuthV4-Common] Response error. IDP is empty or nil: %1 |
AuthV4ResponseFailSelectedPlayerID | -1200044 | [AuthV4-Common] Response error. Selected player ID is empty or nil |
AuthV4CancelDialog | -1200045 | [AuthV4-Common] Dialog is cancelled by user. |
AuthV4ResponseFailSocialDialog | -1200046 | [AuthV4-Common] Response error. Social Dialog.: %1 |
AuthV4ProfileNetworkError | -1200047 | [AuthV4-Profile] Network error is occurred. |
AuthV4ProfileResponseFail | -1200048 | [AuthV4-Profile] Response Fail. |
AuthV4MembershipNetworkError | -1200049 | [AuthV4-Membership] Network error is occurred. |
AuthV4MembershipResponseFail | -1200050 | [AuthV4-Membership] Response Fail. |
AuthV4NetworkErrorShowProfile | -1200051 | [AuthV4-Common] Network error is occured on show profile. |
AuthV4NetworkErrorShowInquiry | -1200053 | [AuthV4-Common] Network error is occured on show inquiry |
AuthV4NetworkErrorOnSignInFinish | -1200054 | [AuthV4-Common] Network error is occured on sign in finish |
AuthV4ResponseFailSigninProvider | -1200055 | [AuthV4-Common] Response Fail on Internal Signin Provider : %1 |
AuthV4ResponseFailConnect | -1200056 | [AuthV4-Common] Response Fail on Connect : %1 |
AuthV4ResponseFailCheckProvider | -1200057 | [AuthV4-Common] Response Fail on CheckProvider : %1 |
AuthV4ResponseFailGetProfile | -1200058 | [AuthV4-Common] Response Fail on GetProfile : %1 |
AuthV4ResponseFailGetFriendList | -1200059 | [AuthV4-Common] Response Fail on GetFriendList : %1 |
AuthV4ResponseFailCheckMaintenance | -1200060 | [AuthV4-Common] Response Fail on CheckMaintenance : %1 |
AuthV4ResponseFailCheckBlacklist | -1200061 | [AuthV4-Common] Response Fail on CheckBlacklist : %1 |
AuthV4ResponseFailSigninGuest | -1200062 | [AuthV4-Common] Response Fail on SigninGuest : %1 |
AuthV4ResponseFailDisconnect | -1200063 | [AuthV4-Common] Response Fail on Disconnect : %1 |
AuthV4ResponseFailSelectIDP | -1200064 | [AuthV4-Common] Response Fail on SelectIDP : %1 |
AuthV4ResponseFailSigninPlayer | -1200065 | [AuthV4-Common] Response Fail on Internal Signin Player : %1 |
AuthV4ProviderLoginError | -1200101 | [AuthV4-Provider] ProviderLoginError |
AuthV4ProviderLogoutError | -1200102 | [AuthV4-Provider] Logout Failed |
AuthV4ProviderNotSupportGetFriends | -1200103 | [AuthV4-Provider] Not supported function Get Friends |
AuthV4FacebookUserCanceled | -1200201 | [AuthV4-ProviderFacebook] Login action is cancelled by user: %1 |
AuthV4FacebookResponseFailLogin | -1200202 | [AuthV4-ProviderFacebook] Response error. Failed to login: %1 |
AuthV4FacebookResponseFailGetFriends | -1200203 | [AuthV4-ProviderFacebook] Response error. Failed to get friends: %1 |
AuthV4FacebookNetworkErrorUploadProfile | -1200204 | [AuthV4-ProvideRFacebook] Network error occured on upload profile. |
AuthV4FacebookResponseFailUploadProfile | -1200205 | [AuthV4-ProvideRFacebook] Response error. Failed to upload profile. |
AuthV4GoogleResponseFailLogin | -1200301 | [AuthV4-ProviderGoogle] ConnectionFailed |
AuthV4GoogleResponseFailLogout | -1200302 | [AuthV4-ProviderGoogle] DisconnetionFailed |
AuthV4GoogleNetworkErrorUploadProfile | -1200303 | [AuthV4-ProviderGoogle] Network error is occured on upload profile. |
AuthV4GoogleResponseFailUploadProfile | -1200304 | [AuthV4-ProviderGoogle] Response error. Failed to upload profile. |
AuthV4GoogleResponseFailShowAchievements | -1200305 | [AuthV4-ProviderGoogle] Response error. Failed to show achievements. |
AuthV4GoogleResponseFailShowLeaderboards | -1200306 | [AuthV4-ProviderGoogle] Response error. Failed to show leaderboards. |
AuthV4AppleLoginCancel | -1200401 | [AuthV4-ProviderApple] Login Cancelled: %1 |
AuthV4AppleResponseFailLogin | -1200402 | [AuthV4-ProviderApple] Response error. login: %1 |
AuthV4AppleResponseFailLoginVC | -1200403 | [AuthV4-ProviderApple] Response error. apple view controller is nil |
AuthV4AppleTimeOut | -1200404 | [AuthV4-ProviderApple] Timeout |
AuthV4AppleResponseFailReportScore | -1200405 | [AuthV4-ProviderApple] Response error. Failed to report score: %1 |
AuthV4AppleInProgressGameCenterVC | -1200406 | [AuthV4-ProviderApple] GameCenterViewController in use. |
AuthV4AppleResponseFailLoadAchievements | -1200407 | [AuthV4-ProviderApple] Response error. Load achievements failed: %1 |
AuthV4AppleResponseFailReportAchievements | -1200408 | [AuthV4-ProviderApple] Response error. Report achievements failed: %1 |
AuthV4AppleResponseFailResetAchievements | -1200409 | [AuthV4-ProviderApple] Response error. Reset achievements failed: %1 |
AuthV4VKInProgressLoginLogout | -1200501 | [AuthV4-ProviderVK] Login or logout in progress. |
AuthV4VKResponseFailLogin | -1200502 | [AuthV4-ProviderVK] Response Fail on request login : %1 |
AuthV4VKInvalidParamSDK | -1200503 | [AuthV4-ProviderVK] VK SDK Setup is failed. |
AuthV4VKNotInitialized | -1200504 | [AuthV4-ProviderVK] VK SDK not initialized. |
AuthV4VKCancelLogin | -1200505 | [AuthV4-ProviderVK] Request authorization is cancelled |
AuthV4VKFailLogin | -1200506 | [AuthV4-ProviderVK] Request authorization is failed |
AuthV4VKInvalidSession | -1200507 | [AuthV4-ProviderVK] VK Session is invalid. |
AuthV4VKResponseFailGetFriends | -1200508 | [AuthV4-ProviderVK] Response Fail on get friends: %1 |
AuthV4VKResponseFailLogout | -1200509 | [AuthV4-ProviderVK] Response Fail on request logout. |
AuthV4VKResponseFailUploadProfile | -1200510 | [AuthV4-ProviderVK] Response Fail |
AuthV4VKNetworkErrorUploadProfile | -1200511 | [AuthV4-ProviderVK] NetworkError |
AuthV4WechatInProgressLoginLogout | -1200601 | [AuthV4-ProviderWeChat] Login or logout in progress. |
AuthV4WechatResponseFailLogin | -1200602 | [AuthV4-ProviderWeChat] Response error. Failed to login: %1 |
AuthV4WechatNotSupportedRequest | -1200603 | [AuthV4-ProviderWeChat] Request is not supported: %1 |
AuthV4WechatResponseFailUserInfo | -1200604 | [AuthV4-ProviderWeChat] Request error. failed to get user info: %1 |
AuthV4WechatNetworkErrorUserInfo | -1200605 | [AuthV4-ProviderWeChat] Request error. NetworkError while getting user info: %1 |
AuthV4WechatNetworkError | -1200606 | [AuthV4-ProviderWeChat] NetworkError |
AuthV4WechatResponseFail | -1200607 | [AuthV4-ProviderWeChat] ResponseFail |
AuthV4WechatNetworkErrorLogin | -1200608 | [AuthV4-ProviderWeChat] NetworkError. Failed to login. |
AuthV4WechatInvalidParamAppId | -1200609 | [AuthV4-ProviderWeChat] Wechat SDK Setup is failed. App ID / App Secret is empty or nil: %1 |
AuthV4HIVEInProgressDialog | -1200701 | [AuthV4-ProviderHIVE] Dialog in use |
AuthV4HIVEDialogCancel | -1200702 | [AuthV4-ProviderHIVE] Dialog is cancelled |
AuthV4HIVENetworkErrorUploadProfile | -1200703 | [AuthV4-ProviderHIVE] Network error is occured on upload profile. |
AuthV4HIVEResponseFailUploadProfile | -1200704 | [AuthV4-ProviderHIVE] Response error. failed to upload profile. |
AuthV4HIVEResponseFailLogin | -1200705 | [AuthV4-ProviderHIVE] Response error. failed to login. |
AuthV4QQInProgressLoginLogout | -1200801 | [AuthV4-ProviderQQ] Login or logout in progress. |
AuthV4QQInvalidParamAppID | -1200802 | [AuthV4-ProviderQQ] QQ App ID Not found: %1 |
AuthV4QQResponseFailLogin | -1200803 | [AuthV4-ProviderQQ] login session is not valid. |
AuthV4QQCancelLogin | -1200804 | [AuthV4-ProviderQQ] login is cancelled. |
AuthV4QQNetworkError | -1200805 | [AuthV4-ProviderQQ] Network error is occurred. |
AuthV4QQNetworkErrorUploadProfile | -1200806 | [AuthV4-ProviderQQ] Network error is occurred on upload profile |
AuthV4QQResponseFailUploadProfile | -1200807 | [AuthV4-ProviderQQ] Response error. Failed to upload profile |
AuthV4QQCancelUploadProfile | -1200808 | [AuthV4-ProviderQQ] Upload profiel is cancelled. |
AuthV4QQResponseFailLogout | -1200809 | [AuthV4-ProviderQQ] Response error. Failed to logout. |
AuthV4QQNotInitialized | -1200810 | [AuthV4-ProviderQQ] QQ SDK not initialized. |
SocialResponseFailDismissDialog | -2000001 | [Social-Common] InvalidParamClose |
SocialCancelDismissDialog | -2000002 | [Social-Common] Canceled |
SocialGoogleNotInitialized | -2000101 | [Social-Google] Not initialized. initialize user first. |
SocialGoogleResponseFailGetProfile | -2000102 | [Social-Google] Fail to get profile. check response |
SocialGoogleInProgressConnect | -2000103 | [Social-Google] In progress. connect. |
SocialGoogleResponseFailConnect | -2000104 | [Social-Google] Response error. Failed to connect. |
SocialGoogleCancelGetProfile | -2000105 | [Social-Google] Get profile is cancelled. |
SocialGoogleCancelConnect | -2000106 | [Social-Google] Connect is cancelled. |
SocialGoogleNetworkErrorUpdateServerFlag | -2000107 | [Social-Google] Network error is occured on update server flag. |
SocialGoogleResponseFailUpdateServerFlag | -2000108 | [Social-Google] Response error. Failed to update server flag. |
SocialFacebookNotInitialized | -2000201 | [Social-Facebook] Not initialized. initialize user first. |
SocialFacebookResponseFailGetProfile | -2000202 | [Social-Facebook] Fail to get profile. check response: %1 |
SocialFacebookCancelGetProfile | -2000203 | [Social-Facebook] Get profile cancelled. |
SocialFacebookResponseFailGetFriends | -2000204 | [Social-Facebook] Fail to get friends. check response: %1 |
SocialFacebookCancelGetFriends | -2000205 | [Social-Facebook] Get friends cancelled. |
SocialFacebookResponseFailSendMessage | -2000206 | [Social-Facebook] Fail to send message. check response: %1 |
SocialFacebookCancelSendMessage | -2000207 | [Social-Facebook] Send message cancelled. |
SocialFacebookMessageDialogShowFail | -2000208 | [Social-Facebook] Fail to show message dialog. |
SocialFacebookResponseFailShowInvitation | -2000209 | [Social-Facebook] Fail to show invite dialog: %1 |
SocialFacebookCancelShowInvitation | -2000210 | [Social-Facebook] Show invite dialog cancelled |
SocialFacebookInvalidParamPost | -2000211 | [Social-Facebook] Invalid paramter for posting to facebook. |
SocialFacebookPostDialogShowFail | -2000212 | [Social-Facebook] Fail to show post dialog. |
SocialFacebookShareFail | -2000213 | [Social-Facebook] Fail to share: %1 |
SocialFacebookShareCancelled | -2000214 | [Social-Facebook] Sharing cancelled. |
SocialFacebookSendInvitationFail | -2000215 | [Social-Facebook] Fail to send invitation: %1 |
SocialFacebookSendInvitationCancelled | -2000216 | [Social-Facebook] Send invitation is cancelled. |
SocialFacebookCancelPost | -2000217 | [Social-Facebook] Posting is cancelled. |
SocialFacebookResponseFailPost | -2000218 | [Social-Facebook] Response error. Failed to posting. |
SocialFacebookOperationException | -2000219 | [Social-Facebook] Operation exception is occured. |
SocialFacebookServiceException | -2000220 | [Social-Facebook] Service exception is occured. |
SocialFacebookException | -2000221 | [Social-Facebook] Exception is occured. |
SocialHIVENotInitialized | -2000301 | [Social-HIVE] Not initialized. initialize user first. |
SocialHIVENetworkErrorGetMyProfile | -2000302 | [Social-HIVE] Network error occured on Get My Profile: %1 |
SocialHIVEInvalidParamSetMyProfile | -2000303 | [Social-HIVE] Invalid parameter. Comment is required |
SocialHIVENetworkErrorSetMyProfile | -2000304 | [Social-HIVE] Network error occured on Set My Profile: %1 |
SocialHIVENetworkErrorGetFriends | -2000305 | [Social-HIVE] Network error occured on Get Friends: %1 |
SocialHIVEInvalidSession | -2000306 | [Social-HIVE] Invalid session. Only HIVE user is permitted |
SocialHIVEInvalidParamVID | -2000307 | [Social-HIVE] Invalid parameter. Valid VID is required. |
SocialHIVENetworkErrorGetVIDByUIDList | -2000308 | [Social-HIVE] Network error occured on Get VID By UID List: %1 |
SocialHIVENetworkErrorGetUIDByVIDList | -2000309 | [Social-HIVE] Network error occured on Get UID By VID List: %1 |
SocialHIVEInvalidParamContentSendMessage | -2000310 | [Social-HIVE] Invalid parameter. Message content is required. |
SocialHIVENetworkErrorSendMessage | -2000311 | [Social-HIVE] Network error occured on Send Message: %1 |
SocialHIVEInvalidParamReceiptSendMessage | -2000312 | [Social-HIVE] Invalid parameter. Need valid receipts for Send Message. |
SocialHIVEInvalidParamUID | -2000313 | [Social-HIVE] Invalid parameter. UID is empty or nil |
SocialHIVEInProgressSocialDialog | -2000314 | [Social-HIVE] In progress. SocialDialog is already showing. |
SocialHIVESocialDialogClosed | -2000315 | [Social-HIVE] SocialDialog is closed. |
SocialHIVENetworkErrorGetBadgeInfo | -2000316 | [Social-HIVE] Network error occured on Get Badge Info: %1 |
SocialHIVEResponseFailGetMyProfile | -2000317 | [Social-HIVE] Response error is occured on Get My Profile: %1 |
SocialHIVEResponseFailSetMyProfile | -2000318 | [Social-HIVE] Response error is occured on Set My Profile: %1 |
SocialHIVEResponseFailGetFriends | -2000319 | [Social-HIVE] Response error is occured on Get Friends: %1 |
SocialHIVEResponseFailGetVID | -2000320 | [Social-HIVE] Response error occured on Get VID: %1 |
SocialHIVEResponseFailInvalidVIDList | -2000321 | [Social-HIVE] Server response vid list does not match. |
SocialHIVEResponseFailGetUID | -2000322 | [Social-HIVE] Response error occured on Get UID: %1 |
SocialHIVEResponseFailInvalidUIDList | -2000323 | [Social-HIVE] Server response uid list does not match. |
SocialHIVEResponseFailSendMessage | -2000324 | [Social-HIVE] Response error is occured on Send Message: %1 |
SocialHIVEResponseFailGetBadgeInfo | -2000325 | [Social-HIVE] Response error is occured on Get badge: %1 |
SocialHIVEResponseFailDialogWebView | -2000326 | [Social-HIVE] WebView error is occured in social dialog: %1 |
SocialHIVEResponseFailSocialDialog | -2000327 | [Social-HIVE] Social dialog error is occured. |
SocialHIVEInvalidParamFriendType | -2000328 | [Social-HIVE] Requested friend type %1 is not supported. |
SocialHIVEResponseFailGetProfiles | -2000329 | [Social-HIVE] Response error. Failed to get profiles. |
SocialHIVEInvalidParamGetProfiles | -2000330 | [Social-HIVE] Invalid param get profiles. |
SocialHIVEResponseFail | -2000331 | [Social-HIVE] Response error. |
SocialHIVEInvalidParamSendMessage | -2000332 | [Social-HIVE] Invalid parameter. Message content is required. |
SocialHIVEInvalidParamSendInvitationMessage | -2000333 | [Social-HIVE] Invalid parameter. Send invitation message. |
SocialHIVEResponseFailGetPictureFromGallery | -2000334 | [Social-HIVE] Response error. Failed to get picture from gallery. |
SocialHIVEResponseFailGetPictureFromCamera | -2000335 | [Social-HIVE] Response error. Failed to get picture from camera. |
SocialHIVENetworkErrorSendInvitationMessage | -2000336 | [Social-HIVE] Network error is occured on send invitation message. |
PromotionNotInitialized | -3000001 | [Promotion] Not Initialized. Initialize User First |
PromotionAlreadyShowing | -3000002 | [Promotion] Promotion View is already showing. |
PromotionNetworkErrorShowPromotion | -3000003 | [Promotion] Network error occured on Show Promotion: %1 |
PromotionNetworkErrorShowCustomContents | -3000004 | [Promotion] Network error occured on Show Custom Contents: %1 |
PromotionNetworkErrorShowOfferwall | -3000005 | [Promotion] Network error occured on Show Offerwall |
PromotionNetworkErrorShowReview | -3000006 | [Promotion] Network error occured on Show Review: %1 |
PromotionNetworkErrorGetViewInfo | -3000007 | [Promotion] Network error occured on Get View Info: %1 |
PromotionNetworkErrorGetBadgeInfo | -3000008 | [Promotion] Network error occured on Get Badge Info: %1 |
PromotionShowDialogFail | -3000009 | [Promotion] Fail to show Dialog. Please check data from promotion server: %1 |
PromotionShowReviewFail | -3000010 | [Promotion] Fail to show Review Dialog. Please check data from promotion server: %1 |
PromotionGetViewInfoError | -3000011 | [Promotion] Fail to get view info. Please check data from promotion server: %1 |
PromotionGetBadgeInfoError | -3000012 | [Promotion] Fail to get badge info. Please check data from promotion server: %1 |
PromotionResponseFailShowPromotion | -3000013 | [Promotion] Response error. Failed to show promotion. |
PromotionResponseFailShowCustomContents | -3000014 | [Promotion] Response error. Failed to show custom contents. |
PromotionResponseFailShowOfferwall | -3000015 | [Promotion] Response error. Failed to show offerwall. |
PromotionResponseFailShowReview | -3000016 | [Promotion] Response error. Failed to show review. |
PromotionResponseFailGetViewInfo | -3000017 | [Promotion] Response error. Failed to get view info |
PromotionResponseFailGetBadgeInfo | -3000018 | [Promotion] Response error. Failed to get badge info. |
PromotionNetworkErrorShowExit | -3000019 | [Promotion] Network error is occured on show exit. |
PromotionNetworkErrorGetAppInvitationData | -3100001 | [Promotion UA] Network error occured on Get App Inviation data: %1 |
PromotionResponseFailGetAppInvitationData | -3100002 | [Promotion UA] Fail to get App Invitation Data. Please check data from promotion server: %1 |
UserEngagementResponseFail | -3200001 | [Promotion UE] Response error. |
UserEngagementAlreadySetReady | -3200002 | [Promotion UE] Already in ready to UE. |
UserEngagementHandlerNotRegistered | -3200003 | [Promotion UE] Handler not registered. |
UserEngagementNotLogined | -3200004 | [Promotion UE] Unauthorized User. Please do login first. |
UserEngagementEmptyCouponId | -3200005 | [Promotion UE] Coupon value is empty. |
UserEngagementEmptyMarketPid | -3200006 | [Promotion UE] Market pid value is empty. |
UserEngagementListenerNotRegistered | -3200007 | [Promotion UE] Listener is not registered. |
PushNotInitialized | -4000001 | [Push] Not initialized. initialize user first. |
PushInvalidParamLocalPush | -4000002 | [Push] Invalid Param Local Push |
PushInvalidParamRemotePush | -4000003 | [Push] Invalid Param Remote Push |
PushNetworkError | -4000004 | [Push] Network Error |
PushResponseFailGetRemotePush | -4000005 | [Push] Bad response on Get Remote Push: %1 |
PushResponseFailSetRemotePush | -4000006 | [Push] Bad response on Set Remote Push: %1 |
IAPNotInitialize | -6000001 | [IAP] Not Initialized. Initialize User First. |
IAPAlreadyInInitialize | -6000002 | [IAP] Already IAP Initialized. |
IAPNetworkError | -6000003 | [IAP] Network error occured: %1 |
IAPNotSupportedMarket | -6000004 | [IAP] Invalid or NOT supported market identifier. (%1) |
IAPNeedLogin | -6000005 | [IAP] Unauthorized User. Please do login first. |
IAPNeedShopInitialize | -6000006 | [IAP] Not Shop Initialized. Initialize Shop First. |
IAPNotSupportedOSVersion | -6000007 | [IAP] Unsupported OS Version. |
IAPNeedRestore | -6000008 | [IAP] Unfinished transactions: %1 exists. Need restore. |
IAPRestoreNotOwned | -6000009 | [IAP] Restore Item not owned. |
IAPNothingToRestore | -6000010 | [IAP] Nothing to restore. |
IAPFailRestore | -6000011 | [IAP] Fail to restore. |
IAPRestrictPayments | -6000012 | [IAP] This device is not able or allowed to make payments. |
IAPNetworkJsonException | -6000013 | [IAP] Json Exception during IAP Network |
IAPMarketNotSupportedAPI | -6000014 | [IAP] Market did not support this API |
IAPFailMarketInitialize | -6000015 | [IAP] Market data is nothing |
IAPResponseError | -6000016 | [IAP] Network response exception is occured. |
IAPInProgressPurchasing | -6000101 | [IAP] Already in progress purchasing. |
IAPInProgressRestoring | -6000102 | [IAP] Already in progress restoring. |
IAPInProgressCheckPromotePurchase | -6000103 | [IAP] Already in progress check promote purchase. |
IAPInProgressConnectingAppStore | -6000104 | [IAP] Already in progress connecting App Store. |
IAPInProgressMarketSelection | -6000105 | [IAP] Already in progress market selection. |
IAPAppStoreError | -6000201 | [IAP] App Store Error: %1 |
IAPAppStoreResponseEmpty | -6000202 | [IAP] Fail to get response data from App Store. Response data is empty. |
IAPCannotFindGamePID | -6000301 | [IAP] Can not find game pid matching with market pid, PID is empty or nil. |
IAPProductNotExist | -6000302 | [IAP] Can not find product in IAP Server: %1 |
IAPEmptyMarketPID | -6000303 | [IAP] Fail to request purchase product. MarketPID is empty or nil. |
IAPFailCreateSKPayment | -6000304 | [IAP] SKPayment create failed. |
IAPEmptyTransaction | -6000305 | [IAP] Fail to request purchase. Purchased transaction is empty. |
IAPEmptyProduct | -6000306 | [IAP] Can not find market product using marker pid: %1 |
IAPCancelPayment | -6000307 | [IAP] Failed to purchase(Cancelled): %1 |
IAPFailPayment | -6000308 | [IAP] Failed to purchase |
IAPInvalidMarketPID | -6000309 | [IAP] Failed to convert to MarketPIDs to PID set. |
IAPPurchaseParamJsonException | -6000310 | [IAP] Purchase parameter json exception is occured. |
IAPShopInfoParamJsonException | -6000311 | [IAP] Shopinfo parameter json exception is occured. |
IAPBadgeParamJsonException | -6000312 | [IAP] Badge parameter json exception is occured. |
IAPInvalidParamEmptyMarketPID | -6000401 | [IAP] Game pid is empty. |
IAPInvalidParamLocationCode | -6000402 | [IAP] Location code is empty |
IAPBlockedUser | -6000501 | [IAP] This user has been blocked: %1 |
IAPPromoCodeMatchMultiMarketPID | -6000502 | [IAP] Multiple product matched in market pid: %1 |
IAPPromoCodeNotMatchMarketPID | -6000503 | [IAP] No product matched in market pid: %1 |
IAPPromoCodeAlreadyUsed | -6000504 | [IAP] This Promotion code already used: %1 |
IAPAppleReceiptNotConnected | -6000505 | [IAP] Apple receipt verifying server can not connected: %1 |
IAPServerDefaultError | -6000506 | [IAP] IAP server error: %1 |
IAPInitializeMarketListIsEmpty | -6000601 | [IAP] Resopnse failed. Market list is empty. |
IAPInitializeMarketURLISEmpty | -6000602 | [IAP] Resopnse failed. Market url is empty. |
IAPEmptyMarketURL | -6000603 | [IAP] Selected market URL is empty. |
IAPNotSelectedMarket | -6000604 | [IAP] Failed to select market. |
IAPPlayStoreLaunchPurchaseFlowException | -6000701 | [IAP] PlayStore launchpurchaseflow exception is occured. |
IAPPlayStoreSetupFail | -6000702 | [IAP] PlayStore start setup fail |
IAPPlayStoreQueryInventoryFail | -6000703 | [IAP] PlayStore query inventory fail when initialize |
IAPOneStoreProductListEmpty | -6000801 | [IAP] OneStore Product List is empty. |
IAPOneStoreProductNetworkError | -6000802 | [IAP] OneStore requestProductInfo network fail |
IAPOneStoreProductInfoError | -6000803 | [IAP] OneStore requestProductInfo fail. |
IAPOneStoreInvalidRequestID | -6000804 | [IAP] OneStore requestID is invalid |
IAPOneStorePurchaseError | -6000805 | [IAP] OneStore purchase fail |
IAPOneStoreNetworkNullError | -6000806 | [IAP] Onestore Network response null error |
IAPOneStoreNetworkInvalidError | -6000807 | [IAP] Onestore Network response invalid error |
IAPLebiInitializeNetworkError | -6000901 | [IAP] Lebi Initialize fail |
IAPLebiInitializeJsonException | -6000902 | [IAP] Lebi initialize json exception is occured. |
IAPLebiPurchaseNetworkError | -6000903 | [IAP] Lebi purchase fail |
IAPLebiPurchaseJsonException | -6000904 | [IAP] Lebi purchase json exception is occured. |
IAPLebiVerifyOrderNetworkError | -6000905 | [IAP] Lebi verifyorder fail |
IAPLebiVerifyOrderJsonException | -6000906 | [IAP] Lebi verifyorder json exception is occured. |
IAPLebiBalanceNetworkError | -6000907 | [IAP] Lebi balance fail |
IAPLebiBalanceParamJsonException | -6000908 | [IAP] Lebi balance json exception is occured. |
IAPLebiPostException | -6000909 | [IAP] Lebi post exception is occured. |
IAPLebiInternalRequestException | -6000910 | [IAP] Lebi Internal request exception is occured. |
IAPLebiRestoreNetworkError | -6000911 | [IAP] Lebi restore create invalid response data |
IAPV4NotInitialize | -6100001 | [IAPv4] Not Initialized. Initialize User First. |
IAPV4NetworkError | -6100002 | [IAPv4] Network error occured: %1 |
IAPV4NotSupportedMarket | -6100003 | [IAPv4] Market is not supported. |
IAPV4NeedLogin | -6100004 | [IAPv4] Unauthorized User. Please do login first. |
IAPV4NeedMarketConnect | -6100005 | [IAPv4] Not Shop Initialized. Initialize Shop First. |
IAPV4NeedRestore | -6100006 | [IAPv4] Unfinished transactions: %1 exists. Need restore. |
IAPV4NothingToRestore | -6100007 | [IAPv4] Nothing to restore. |
IAPV4FailToRestore | -6100008 | [IAPv4] Fail to restore. |
IAPV4RestrictPayments | -6100009 | [IAPv4] This device is not able or allowed to make payments. |
IAPV4FailMarketConnect | -6100010 | [IAPv4] Market data is nothing |
IAPV4ResponseError | -6100011 | [IAPv4] response parsing exception is occured. |
IAPV4MarketNotSupportedAPI | -6100012 | [IAPv4] Market did not support this API |
IAPV4InProgressMarketConnect | -6100101 | [IAPv4] Already in progress market connect. |
IAPV4InProgressPurchasing | -6100102 | [IAPv4] Already in progress purchasing. |
IAPV4InProgressRestoring | -6100103 | [IAPv4] Already in progress restoring. |
IAPV4InProgressCheckPromote | -6100104 | [IAPv4] Already in progress check promote purchase. |
IAPV4InProgressConnectAppStore | -6100105 | [IAPv4] Already in progress connect App Store. |
IAPV4InProgressMarketSelect | -6100106 | [IAPv4] Already in progress market select. |
IAPV4AppStoreError | -6100201 | [IAPv4] App Store Error: %1 |
IAPV4AppStoreResponseEmpty | -6100202 | [IAPv4] Fail to get response data from App Store. Response data is empty. |
IAPV4ProductNotExsitInAppStore | -6100203 | [IAPv4] Can not find product: %1 |
IAPV4FinishMarketPidEmpty | -6100301 | [IAPv4] Finished market PID is empty or nil. |
IAPV4PromoteMarketPidEmpty | -6100302 | [IAPv4] Market pid is empty. |
IAPV4FailCreateSKPayment | -6100303 | [IAPv4] Fail to create payment. |
IAPV4FailToConvertNSSet | -6100304 | [IAPv4] Fail to conver to MarketPids to Pid set. |
IAPV4InvalidLogType | -6100305 | [IAPv4] Invalid log type. |
IAPV4ProductNotExist | -6100306 | [IAPv4] Failed to request purchase product. Market product not found. |
IAPV4RequestProductJsonException | -6100307 | [IAPv4] reqeust Product Json Exception is occured. |
IAPV4PurchaseParamJsonException | -6100308 | [IAPv4] Purchase parameter json exception is occured. |
IAPV4RequestMarketJsonException | -6100309 | [IAPv4] reqeust Market Json Exception is occured. |
IAPV4ProductInfoJsonException | -6100310 | [IAPv4] Product Info Json exception is occured. |
IAPV4CancelPayment | -6100311 | [IAPv4] Failed to purchase(Cancelled) |
IAPV4FailPayment | -6100312 | [IAPv4] Failed to purchase |
IAPV4EmptyParamMarketPID | -6100401 | [IAPv4] Market pid is empty. |
IAPV4EmptyMarketList | -6100501 | [IAPv4] Market list from IAP server is empty. |
IAPV4EmptyMarketURL | -6100502 | [IAPv4] Response failed. Market selection URL is emptry or nil. |
IAPV4MarketPidListEmptyInIAPServer | -6100503 | [IAPv4] Failed to request product indentifiers. MarketPID is empty or nil. |
IAPV4EmptyProductList | -6100504 | [IAPv4] IAP need get product info. get product info or showPayment API. |
IAPV4ProductNotExistInIAPServer | -6100505 | [IAPv4] Invalid parameter. Unknown market product identifier: %1 |
IAPV4PlayStoreLaunchPurchaseFlowException | -6100701 | [IAPv4] PlayStore launchpurchaseflow exception is occured. |
IAPV4PlayStoreSetupFail | -6100702 | [IAPv4] PlayStore start setup fail |
IAPV4PlayStoreQueryInventoryFail | -6100703 | [IAPv4] PlayStore query inventory fail when initialize |
IAPV4PlayStoreFinishFail | -6100704 | [IAPv4] PlayStore Finish fail. |
IAPV4OneStoreProductListEmpty | -6100801 | [IAPv4] OneStore Product List is empty. |
IAPV4OneStoreProductNetworkError | -6100802 | [IAPv4] OneStore requestProductInfo network fail |
IAPV4OneStoreProductInfoError | -6100803 | [IAPv4] OneStore requestProductInfo fail. |
IAPV4OneStoreInvalidRequestID | -6100804 | [IAPv4] OneStore requestID is invalid |
IAPV4OneStorePurchaseError | -6100805 | [IAPv4] OneStore purchase fail |
IAPV4OneStoreNetworkNullError | -6100806 | [IAPv4] Onestore Network response null error |
IAPV4OneStoreNetworkInvalidError | -6100807 | [IAPv4] Onestore Network response invalid error |
IAPV4OneStoreFinishFail | -6100808 | [IAPv4] OneStore Finish fail. |
IAPV4LebiInitializeNetworkError | -6100901 | [IAPv4] Lebi Initialize fail |
IAPV4LebiInitializeJsonException | -6100902 | [IAPv4] Lebi initialize json exception is occured. |
IAPV4LebiPurchaseNetworkError | -6100903 | [IAPv4] Lebi purchase fail |
IAPV4LebiPurchaseJsonException | -6100904 | [IAPv4] Lebi purchase json exception is occured. |
IAPV4LebiVerifyOrderNetworkError | -6100905 | [IAPv4] Lebi verifyorder fail |
IAPV4LebiVerifyOrderJsonException | -6100906 | [IAPv4] Lebi verifyorder json exception is occured. |
IAPV4LebiBalanceNetworkError | -6100907 | [IAPv4] Lebi balance fail |
IAPV4LebiBalanceParamJsonException | -6100908 | [IAPv4] Lebi balance json exception is occured. |
IAPV4LebiPostException | -6100909 | [IAPv4] Lebi post exception is occured. |
IAPV4LebiInternalRequestException | -6100910 | [IAPv4] Lebi Internal request exception is occured. |
IAPV4LebiRestoreNetworkError | -6100911 | [IAPv4] Lebi restore create invalid response data |
IAPV4LebiCancel | -6100912 | [IAPv4] Lebi Charge cancel. |
IAPV4LebiFinishFail | -6100913 | [IAPv4] Lebi Finish fail. |
Cocos-2d/Unreal
Key Name | Code | Details |
Success | 0 | Success. |
CommonHTTPConnectionException | -1 | [Common] HTTP Connection exception. |
CommonHTTPConnectionOpenException | -2 | [Common] HTTP Connection open exception. |
CommonHTTPContentEncodingNotSupported | -3 | [Common] HTTP Content encoding not supported. |
CommonHTTPDecryptionFailed | -4 | [Common] HTTP Decryption failed. |
CommonHTTPResponseException | -5 | [Common] HTTP Response exception. |
CommonHTTPInvalidBody | -6 | [Common] HTTP body is nil. |
CommonHTTPInvalidJSON | -7 | [Common] HTTP body has invalid JSON: %s |
CommonHTTPInvalidURLRequest | -8 | [Common] HTTP Failed to create NSMutableURLRequest. |
CommonHTTPInvalidURL | -9 | [Common] HTTP Failed to create NSURL from urlPath: %s |
CommonHTTPGzipDecodeFailed | -10 | [Common] GZip decoding is failed. |
CommonHTTPNetworkError | -11 | [Common] Network error is occurred on handle response: %s |
TestError | -800 | [Test] Error message. |
TestWithNSError | -801 | [Test] NSError message: %s |
TestWithNSString | -802 | [Test] NSString message: %s |
TestWithNSDictionary | -803 | [Test] NSDictionary message: %s |
CommonUnknown | -999 | [Common] Unknown |
AuthNotInitialized | -1100001 | [Auth-Common] Not Initialized |
AuthInvalidServerResponse | -1100002 | [Auth-Common] Invalid Server Response |
AuthServerResponseNotSuccessful | -1100003 | [Auth-Common] Server Response Not Successful. string: %s |
AuthInvalidUser | -1100004 | [Auth-Common] Invalid User |
AuthUserCanceled | -1100005 | [Auth-Common] User Canceled |
AuthInProgressLoginLogout | -1100006 | [Auth-Common] Login or logout is already in progress |
AuthInvalidSelectedAccountURL | -1100007 | [Auth-Common] Invalid Selected AccountURL |
AuthInvalidSelectedVID | -1100008 | [Auth-Common] Selected VID is empty or null |
AuthOnRunningV4 | -1100009 | [Auth-Common] On Running V4 |
AuthInvalidConfigurationXml | -1100010 | [Auth-Common] Invalid Configuration Xml |
AuthInvalidParamLoginType | -1100011 | [Auth-Common] Invalid Param Login Type: %s |
AuthInvalidParamVID | -1100012 | [Auth-Common] Invalid Param Vid: %s |
AuthInvalidParamSessionKey | -1100013 | [Auth-Common] Invalid Param Session Key |
AuthInvalidGuestSession | -1100014 | [Auth-Common] Invalid Guest Session |
AuthUserInBlacklist | -1100015 | [Auth-Common] User In Blacklist: %s |
AuthInvalidAccountSession | -1100016 | [Auth-Common] Invalid Account Session |
AuthJsonException | -1100017 | [Auth-Common] JSON Parsing failed. error: %s |
AuthCanceled | -1100018 | [Auth-Common] Canceled |
AuthDialogAlreadyUsing | -1100019 | [Auth-Common] Dialog is already using. |
AuthNetworkErrorShowLoginSelection | -1100020 | [Auth-Common] Network error occured on Get My Profile: %s |
AuthNetworkErrorCheckMaintenance | -1100021 | [Auth-Common] Network error occured on Check Maintenance |
AuthResponseFailCheckMaintenance | -1100022 | [Auth-Common] Bad response on Check Maintenance: %s |
AuthResponseFailMaintenanceDialog | -1100023 | [Auth-Common] Failed to show maintenance dialog. |
AuthNetworkErrorProcessLoginType | -1100024 | [Auth-Common] Network error occured on Prelogin: %s |
AuthNetworkErrorGuestLogin | -1100025 | [Auth-Common] Network error occured on Guest Login: %s |
AuthHIVESocialLoginCancelled | -1100026 | [Auth-Common] HIVE social login cancelled. |
AuthNetworkErrorLoginCenterLogin | -1100027 | [Auth-Common] Network error occured on Login Center Login: %s |
AuthNetworkErrorRequestUpdate | -1100028 | [Auth-Common] Network error occured on Request Update: %s |
AuthNetworkErrorRequestAdultConfirm | -1100029 | [Auth-Common] Network error occured on Adult Confirm. |
AuthInvalidParamVIDList | -1100030 | [Auth-Common] VID list is nil or empty |
AuthV4InvalidServerResponse | -1200001 | [AuthV4-Common] InvalidServerResponse |
AuthV4ServerResponseNotSuccessful | -1200002 | [AuthV4-Common] ServerResponseNotSuccessful |
AuthV4OnRunningV1 | -1200003 | [AuthV4-Common] OnRunningV1 |
AuthV4InProgressSignIn | -1200004 | [AuthV4-Common] SigninInProgress |
AuthV4InvalidConfigurationXml | -1200005 | [AuthV4-Common] InvalidConfigurationXml |
AuthV4InvalidSavedPlayerInfo | -1200006 | [AuthV4-Common] InvalidSavedPlayerInfo |
AuthV4AlreadyAuthorized | -1200007 | [AuthV4-Common] AlreadyAuthorized: %s |
AuthV4PlayerConfliction | -1200008 | [AuthV4-Common] PlayerConfliction |
AuthV4UserInBlacklist | -1200009 | [AuthV4-Common] UserInBlacklist |
AuthV4InvalidSession | -1200010 | [AuthV4-Common] Invalid Session: %s |
AuthV4PlayerConflictionHandlingFailed | -1200011 | [AuthV4-Common] PlayerConflictionHandlingFailed |
AuthV4InvalidParamDid | -1200012 | [AuthV4-Common] Failed to seup. DID is empty or nil |
AuthV4InvalidParamProviderTypeList | -1200013 | [AuthV4-Common] InvalidParamProviderTypeList |
AuthV4NotInitialized | -1200014 | [AuthV4-Common] Need Initialize first |
AuthV4SessionExist | -1200015 | [AuthV4-Common] Already authorized |
AuthV4SessionNotExist | -1200016 | [AuthV4-Common] Not exist remain session. please SignIn Provider. |
AuthV4InvalidProviderType | -1200017 | [AuthV4-Common] Provider type is invalid: %s |
AuthV4SigninFirst | -1200018 | [AuthV4-Common] Need Sign in first. |
AuthV4ProviderAlreadyConnected | -1200019 | [AuthV4-Common] ProviderAlreadyConnected: %s |
AuthV4ProviderAlreadyDisconnected | -1200020 | [AuthV4-Common] ProviderAlreadyDisconnected: %s |
AuthV4InvalidParamSelectedPlayerid | -1200021 | [AuthV4-Common] InvalidParamSelectedPlayerid |
AuthV4InvalidConflictionInfo | -1200022 | [AuthV4-Common] Conficltion info is invalid: %s |
AuthV4InvalidPlayeridList | -1200023 | [AuthV4-Common] PlayerID List is empty or nil |
AuthV4JsonException | -1200024 | [AuthV4-Common] JsonException |
AuthV4InvalidSigninSelection | -1200025 | [AuthV4-Common] InvalidSigninSelection |
AuthV4NotSupportedProviderType | -1200026 | [AuthV4-Common] Requested provider type is not supported: %s |
AuthV4WebviewDialogError | -1200027 | [AuthV4-Common] WebviewDialogError: %s |
AuthV4InProgressSetup | -1200028 | [AuthV4-Common] Setup is already in progress |
AuthV4NetworkErrorGetProfile | -1200029 | [AuthV4-Common] Network error occured on Get Profile. |
AuthV4InProgressAuthDialog | -1200030 | [AuthV4-Common] Auth dialog in use. |
AuthV4InvalidParamViewID | -1200031 | [AuthV4-Common] View ID is empty or nil. |
AuthV4InvalidParamPlayerID | -1200032 | [AuthV4-Common] Invalid param player ID: %s |
AuthV4NetworkErrorCheckMaintenance | -1200033 | [AuthV4-Common] Network error occured on Check Maintenance. |
AuthV4NetworkErrorCheckBlacklist | -1200034 | [AuthV4-Common] Network error occured on Check Blacklist. |
AuthV4NetworkErrorIDP | -1200035 | [AuthV4-Common] Network error occured on Internal IDP. |
AuthV4ResponseFailProviderList | -1200036 | [AuthV4-Common] Response error. Provider list is empty. |
AuthV4NetworkErrorSigninGuest | -1200037 | [AuthV4-Common] Network error occured on Internal Signin Guest. type: %s |
AuthV4NetworkErrorSigninProvider | -1200038 | [AuthV4-Common] Network error occured on Internal Signin Provider. |
AuthV4ResponseFailProviderUserID | -1200039 | [AuthV4-Common] Response error. Provider user ID is empty. |
AuthV4NetworkErrorConnect | -1200040 | [AuthV4-Common] Network error occured on Connect |
AuthV4NetworkErrorDisconnect | -1200041 | [AuthV4-Common] Network error occured on Disconnect |
AuthV4NetworkErrorSelectIDP | -1200042 | [AuthV4-Common] Network error occured on Select IDP |
AuthV4ResponseFailGetIDP | -1200043 | [AuthV4-Common] Response error. IDP is empty or nil: %s |
AuthV4ResponseFailSelectedPlayerID | -1200044 | [AuthV4-Common] Response error. Selected player ID is empty or nil |
AuthV4CancelDialog | -1200045 | [AuthV4-Common] Dialog is cancelled by user. |
AuthV4ResponseFailSocialDialog | -1200046 | [AuthV4-Common] Response error. Social Dialog.: %s |
AuthV4ProfileNetworkError | -1200047 | [AuthV4-Profile] Network error is occurred. |
AuthV4ProfileResponseFail | -1200048 | [AuthV4-Profile] Response Fail. |
AuthV4MembershipNetworkError | -1200049 | [AuthV4-Membership] Network error is occurred. |
AuthV4MembershipResponseFail | -1200050 | [AuthV4-Membership] Response Fail. |
AuthV4NetworkErrorShowProfile | -1200051 | [AuthV4-Common] Network error is occured on show profile. |
AuthV4NetworkErrorShowInquiry | -1200053 | [AuthV4-Common] Network error is occured on show inquiry |
AuthV4NetworkErrorOnSignInFinish | -1200054 | [AuthV4-Common] Network error is occured on sign in finish |
AuthV4ResponseFailSigninProvider | -1200055 | [AuthV4-Common] Response Fail on Internal Signin Provider : %s |
AuthV4ResponseFailConnect | -1200056 | [AuthV4-Common] Response Fail on Connect : %s |
AuthV4ResponseFailCheckProvider | -1200057 | [AuthV4-Common] Response Fail on CheckProvider : %s |
AuthV4ResponseFailGetProfile | -1200058 | [AuthV4-Common] Response Fail on GetProfile : %s |
AuthV4ResponseFailGetFriendList | -1200059 | [AuthV4-Common] Response Fail on GetFriendList : %s |
AuthV4ResponseFailCheckMaintenance | -1200060 | [AuthV4-Common] Response Fail on CheckMaintenance : %s |
AuthV4ResponseFailCheckBlacklist | -1200061 | [AuthV4-Common] Response Fail on CheckBlacklist : %s |
AuthV4ResponseFailSigninGuest | -1200062 | [AuthV4-Common] Response Fail on SigninGuest : %s |
AuthV4ResponseFailDisconnect | -1200063 | [AuthV4-Common] Response Fail on Disconnect : %s |
AuthV4ResponseFailSelectIDP | -1200064 | [AuthV4-Common] Response Fail on SelectIDP : %s |
AuthV4ResponseFailSigninPlayer | -1200065 | [AuthV4-Common] Response Fail on Internal Signin Player : %s |
AuthV4ProviderLoginError | -1200101 | [AuthV4-Provider] ProviderLoginError |
AuthV4ProviderLogoutError | -1200102 | [AuthV4-Provider] Logout Failed |
AuthV4ProviderNotSupportGetFriends | -1200103 | [AuthV4-Provider] Not supported function Get Friends |
AuthV4FacebookUserCanceled | -1200201 | [AuthV4-ProviderFacebook] Login action is cancelled by user: %s |
AuthV4FacebookResponseFailLogin | -1200202 | [AuthV4-ProviderFacebook] Response error. Failed to login: %s |
AuthV4FacebookResponseFailGetFriends | -1200203 | [AuthV4-ProviderFacebook] Response error. Failed to get friends: %s |
AuthV4FacebookNetworkErrorUploadProfile | -1200204 | [AuthV4-ProvideRFacebook] Network error occured on upload profile. |
AuthV4FacebookResponseFailUploadProfile | -1200205 | [AuthV4-ProvideRFacebook] Response error. Failed to upload profile. |
AuthV4GoogleResponseFailLogin | -1200301 | [AuthV4-ProviderGoogle] ConnectionFailed |
AuthV4GoogleResponseFailLogout | -1200302 | [AuthV4-ProviderGoogle] DisconnetionFailed |
AuthV4GoogleNetworkErrorUploadProfile | -1200303 | [AuthV4-ProviderGoogle] Network error is occured on upload profile. |
AuthV4GoogleResponseFailUploadProfile | -1200304 | [AuthV4-ProviderGoogle] Response error. Failed to upload profile. |
AuthV4GoogleResponseFailShowAchievements | -1200305 | [AuthV4-ProviderGoogle] Response error. Failed to show achievements. |
AuthV4GoogleResponseFailShowLeaderboards | -1200306 | [AuthV4-ProviderGoogle] Response error. Failed to show leaderboards. |
AuthV4AppleLoginCancel | -1200401 | [AuthV4-ProviderApple] Login Cancelled: %s |
AuthV4AppleResponseFailLogin | -1200402 | [AuthV4-ProviderApple] Response error. login: %s |
AuthV4AppleResponseFailLoginVC | -1200403 | [AuthV4-ProviderApple] Response error. apple view controller is nil |
AuthV4AppleTimeOut | -1200404 | [AuthV4-ProviderApple] Timeout |
AuthV4AppleResponseFailReportScore | -1200405 | [AuthV4-ProviderApple] Response error. Failed to report score: %s |
AuthV4AppleInProgressGameCenterVC | -1200406 | [AuthV4-ProviderApple] GameCenterViewController in use. |
AuthV4AppleResponseFailLoadAchievements | -1200407 | [AuthV4-ProviderApple] Response error. Load achievements failed: %s |
AuthV4AppleResponseFailReportAchievements | -1200408 | [AuthV4-ProviderApple] Response error. Report achievements failed: %s |
AuthV4AppleResponseFailResetAchievements | -1200409 | [AuthV4-ProviderApple] Response error. Reset achievements failed: %s |
AuthV4VKInProgressLoginLogout | -1200501 | [AuthV4-ProviderVK] Login or logout in progress. |
AuthV4VKResponseFailLogin | -1200502 | [AuthV4-ProviderVK] Response Fail on request login : %s |
AuthV4VKInvalidParamSDK | -1200503 | [AuthV4-ProviderVK] VK SDK Setup is failed. |
AuthV4VKNotInitialized | -1200504 | [AuthV4-ProviderVK] VK SDK not initialized. |
AuthV4VKCancelLogin | -1200505 | [AuthV4-ProviderVK] Request authorization is cancelled |
AuthV4VKFailLogin | -1200506 | [AuthV4-ProviderVK] Request authorization is failed |
AuthV4VKInvalidSession | -1200507 | [AuthV4-ProviderVK] VK Session is invalid. |
AuthV4VKResponseFailGetFriends | -1200508 | [AuthV4-ProviderVK] Response Fail on get friends: %s |
AuthV4VKResponseFailLogout | -1200509 | [AuthV4-ProviderVK] Response Fail on request logout. |
AuthV4VKResponseFailUploadProfile | -1200510 | [AuthV4-ProviderVK] Response Fail |
AuthV4VKNetworkErrorUploadProfile | -1200511 | [AuthV4-ProviderVK] NetworkError |
AuthV4WechatInProgressLoginLogout | -1200601 | [AuthV4-ProviderWeChat] Login or logout in progress. |
AuthV4WechatResponseFailLogin | -1200602 | [AuthV4-ProviderWeChat] Response error. Failed to login: %s |
AuthV4WechatNotSupportedRequest | -1200603 | [AuthV4-ProviderWeChat] Request is not supported: %s |
AuthV4WechatResponseFailUserInfo | -1200604 | [AuthV4-ProviderWeChat] Request error. failed to get user info: %s |
AuthV4WechatNetworkErrorUserInfo | -1200605 | [AuthV4-ProviderWeChat] Request error. NetworkError while getting user info: %s |
AuthV4WechatNetworkError | -1200606 | [AuthV4-ProviderWeChat] NetworkError |
AuthV4WechatResponseFail | -1200607 | [AuthV4-ProviderWeChat] ResponseFail |
AuthV4WechatNetworkErrorLogin | -1200608 | [AuthV4-ProviderWeChat] NetworkError. Failed to login. |
AuthV4WechatInvalidParamAppId | -1200609 | [AuthV4-ProviderWeChat] Wechat SDK Setup is failed. App ID / App Secret is empty or nil: %s |
AuthV4HIVEInProgressDialog | -1200701 | [AuthV4-ProviderHIVE] Dialog in use |
AuthV4HIVEDialogCancel | -1200702 | [AuthV4-ProviderHIVE] Dialog is cancelled |
AuthV4HIVENetworkErrorUploadProfile | -1200703 | [AuthV4-ProviderHIVE] Network error is occured on upload profile. |
AuthV4HIVEResponseFailUploadProfile | -1200704 | [AuthV4-ProviderHIVE] Response error. failed to upload profile. |
AuthV4HIVEResponseFailLogin | -1200705 | [AuthV4-ProviderHIVE] Response error. failed to login. |
AuthV4QQInProgressLoginLogout | -1200801 | [AuthV4-ProviderQQ] Login or logout in progress. |
AuthV4QQInvalidParamAppID | -1200802 | [AuthV4-ProviderQQ] QQ App ID Not found: %s |
AuthV4QQResponseFailLogin | -1200803 | [AuthV4-ProviderQQ] login session is not valid. |
AuthV4QQCancelLogin | -1200804 | [AuthV4-ProviderQQ] login is cancelled. |
AuthV4QQNetworkError | -1200805 | [AuthV4-ProviderQQ] Network error is occurred. |
AuthV4QQNetworkErrorUploadProfile | -1200806 | [AuthV4-ProviderQQ] Network error is occurred on upload profile |
AuthV4QQResponseFailUploadProfile | -1200807 | [AuthV4-ProviderQQ] Response error. Failed to upload profile |
AuthV4QQCancelUploadProfile | -1200808 | [AuthV4-ProviderQQ] Upload profiel is cancelled. |
AuthV4QQResponseFailLogout | -1200809 | [AuthV4-ProviderQQ] Response error. Failed to logout. |
AuthV4QQNotInitialized | -1200810 | [AuthV4-ProviderQQ] QQ SDK not initialized. |
SocialResponseFailDismissDialog | -2000001 | [Social-Common] InvalidParamClose |
SocialCancelDismissDialog | -2000002 | [Social-Common] Canceled |
SocialGoogleNotInitialized | -2000101 | [Social-Google] Not initialized. initialize user first. |
SocialGoogleResponseFailGetProfile | -2000102 | [Social-Google] Fail to get profile. check response |
SocialGoogleInProgressConnect | -2000103 | [Social-Google] In progress. connect. |
SocialGoogleResponseFailConnect | -2000104 | [Social-Google] Response error. Failed to connect. |
SocialGoogleCancelGetProfile | -2000105 | [Social-Google] Get profile is cancelled. |
SocialGoogleCancelConnect | -2000106 | [Social-Google] Connect is cancelled. |
SocialGoogleNetworkErrorUpdateServerFlag | -2000107 | [Social-Google] Network error is occured on update server flag. |
SocialGoogleResponseFailUpdateServerFlag | -2000108 | [Social-Google] Response error. Failed to update server flag. |
SocialFacebookNotInitialized | -2000201 | [Social-Facebook] Not initialized. initialize user first. |
SocialFacebookResponseFailGetProfile | -2000202 | [Social-Facebook] Fail to get profile. check response: %s |
SocialFacebookCancelGetProfile | -2000203 | [Social-Facebook] Get profile cancelled. |
SocialFacebookResponseFailGetFriends | -2000204 | [Social-Facebook] Fail to get friends. check response: %s |
SocialFacebookCancelGetFriends | -2000205 | [Social-Facebook] Get friends cancelled. |
SocialFacebookResponseFailSendMessage | -2000206 | [Social-Facebook] Fail to send message. check response: %s |
SocialFacebookCancelSendMessage | -2000207 | [Social-Facebook] Send message cancelled. |
SocialFacebookMessageDialogShowFail | -2000208 | [Social-Facebook] Fail to show message dialog. |
SocialFacebookResponseFailShowInvitation | -2000209 | [Social-Facebook] Fail to show invite dialog: %s |
SocialFacebookCancelShowInvitation | -2000210 | [Social-Facebook] Show invite dialog cancelled |
SocialFacebookInvalidParamPost | -2000211 | [Social-Facebook] Invalid paramter for posting to facebook. |
SocialFacebookPostDialogShowFail | -2000212 | [Social-Facebook] Fail to show post dialog. |
SocialFacebookShareFail | -2000213 | [Social-Facebook] Fail to share: %s |
SocialFacebookShareCancelled | -2000214 | [Social-Facebook] Sharing cancelled. |
SocialFacebookSendInvitationFail | -2000215 | [Social-Facebook] Fail to send invitation: %s |
SocialFacebookSendInvitationCancelled | -2000216 | [Social-Facebook] Send invitation is cancelled. |
SocialFacebookCancelPost | -2000217 | [Social-Facebook] Posting is cancelled. |
SocialFacebookResponseFailPost | -2000218 | [Social-Facebook] Response error. Failed to posting. |
SocialFacebookOperationException | -2000219 | [Social-Facebook] Operation exception is occured. |
SocialFacebookServiceException | -2000220 | [Social-Facebook] Service exception is occured. |
SocialFacebookException | -2000221 | [Social-Facebook] Exception is occured. |
SocialHIVENotInitialized | -2000301 | [Social-HIVE] Not initialized. initialize user first. |
SocialHIVENetworkErrorGetMyProfile | -2000302 | [Social-HIVE] Network error occured on Get My Profile: %s |
SocialHIVEInvalidParamSetMyProfile | -2000303 | [Social-HIVE] Invalid parameter. Comment is required |
SocialHIVENetworkErrorSetMyProfile | -2000304 | [Social-HIVE] Network error occured on Set My Profile: %s |
SocialHIVENetworkErrorGetFriends | -2000305 | [Social-HIVE] Network error occured on Get Friends: %s |
SocialHIVEInvalidSession | -2000306 | [Social-HIVE] Invalid session. Only HIVE user is permitted |
SocialHIVEInvalidParamVID | -2000307 | [Social-HIVE] Invalid parameter. Valid VID is required. |
SocialHIVENetworkErrorGetVIDByUIDList | -2000308 | [Social-HIVE] Network error occured on Get VID By UID List: %s |
SocialHIVENetworkErrorGetUIDByVIDList | -2000309 | [Social-HIVE] Network error occured on Get UID By VID List: %s |
SocialHIVEInvalidParamContentSendMessage | -2000310 | [Social-HIVE] Invalid parameter. Message content is required. |
SocialHIVENetworkErrorSendMessage | -2000311 | [Social-HIVE] Network error occured on Send Message: %s |
SocialHIVEInvalidParamReceiptSendMessage | -2000312 | [Social-HIVE] Invalid parameter. Need valid receipts for Send Message. |
SocialHIVEInvalidParamUID | -2000313 | [Social-HIVE] Invalid parameter. UID is empty or nil |
SocialHIVEInProgressSocialDialog | -2000314 | [Social-HIVE] In progress. SocialDialog is already showing. |
SocialHIVESocialDialogClosed | -2000315 | [Social-HIVE] SocialDialog is closed. |
SocialHIVENetworkErrorGetBadgeInfo | -2000316 | [Social-HIVE] Network error occured on Get Badge Info: %s |
SocialHIVEResponseFailGetMyProfile | -2000317 | [Social-HIVE] Response error is occured on Get My Profile: %s |
SocialHIVEResponseFailSetMyProfile | -2000318 | [Social-HIVE] Response error is occured on Set My Profile: %s |
SocialHIVEResponseFailGetFriends | -2000319 | [Social-HIVE] Response error is occured on Get Friends: %s |
SocialHIVEResponseFailGetVID | -2000320 | [Social-HIVE] Response error occured on Get VID: %s |
SocialHIVEResponseFailInvalidVIDList | -2000321 | [Social-HIVE] Server response vid list does not match. |
SocialHIVEResponseFailGetUID | -2000322 | [Social-HIVE] Response error occured on Get UID: %s |
SocialHIVEResponseFailInvalidUIDList | -2000323 | [Social-HIVE] Server response uid list does not match. |
SocialHIVEResponseFailSendMessage | -2000324 | [Social-HIVE] Response error is occured on Send Message: %s |
SocialHIVEResponseFailGetBadgeInfo | -2000325 | [Social-HIVE] Response error is occured on Get badge: %s |
SocialHIVEResponseFailDialogWebView | -2000326 | [Social-HIVE] WebView error is occured in social dialog: %s |
SocialHIVEResponseFailSocialDialog | -2000327 | [Social-HIVE] Social dialog error is occured. |
SocialHIVEInvalidParamFriendType | -2000328 | [Social-HIVE] Requested friend type %s is not supported. |
SocialHIVEResponseFailGetProfiles | -2000329 | [Social-HIVE] Response error. Failed to get profiles. |
SocialHIVEInvalidParamGetProfiles | -2000330 | [Social-HIVE] Invalid param get profiles. |
SocialHIVEResponseFail | -2000331 | [Social-HIVE] Response error. |
SocialHIVEInvalidParamSendMessage | -2000332 | [Social-HIVE] Invalid parameter. Message content is required. |
SocialHIVEInvalidParamSendInvitationMessage | -2000333 | [Social-HIVE] Invalid parameter. Send invitation message. |
SocialHIVEResponseFailGetPictureFromGallery | -2000334 | [Social-HIVE] Response error. Failed to get picture from gallery. |
SocialHIVEResponseFailGetPictureFromCamera | -2000335 | [Social-HIVE] Response error. Failed to get picture from camera. |
SocialHIVENetworkErrorSendInvitationMessage | -2000336 | [Social-HIVE] Network error is occured on send invitation message. |
PromotionNotInitialized | -3000001 | [Promotion] Not Initialized. Initialize User First |
PromotionAlreadyShowing | -3000002 | [Promotion] Promotion View is already showing. |
PromotionNetworkErrorShowPromotion | -3000003 | [Promotion] Network error occured on Show Promotion: %s |
PromotionNetworkErrorShowCustomContents | -3000004 | [Promotion] Network error occured on Show Custom Contents: %s |
PromotionNetworkErrorShowOfferwall | -3000005 | [Promotion] Network error occured on Show Offerwall |
PromotionNetworkErrorShowReview | -3000006 | [Promotion] Network error occured on Show Review: %s |
PromotionNetworkErrorGetViewInfo | -3000007 | [Promotion] Network error occured on Get View Info: %s |
PromotionNetworkErrorGetBadgeInfo | -3000008 | [Promotion] Network error occured on Get Badge Info: %s |
PromotionShowDialogFail | -3000009 | [Promotion] Fail to show Dialog. Please check data from promotion server: %s |
PromotionShowReviewFail | -3000010 | [Promotion] Fail to show Review Dialog. Please check data from promotion server: %s |
PromotionGetViewInfoError | -3000011 | [Promotion] Fail to get view info. Please check data from promotion server: %s |
PromotionGetBadgeInfoError | -3000012 | [Promotion] Fail to get badge info. Please check data from promotion server: %s |
PromotionResponseFailShowPromotion | -3000013 | [Promotion] Response error. Failed to show promotion. |
PromotionResponseFailShowCustomContents | -3000014 | [Promotion] Response error. Failed to show custom contents. |
PromotionResponseFailShowOfferwall | -3000015 | [Promotion] Response error. Failed to show offerwall. |
PromotionResponseFailShowReview | -3000016 | [Promotion] Response error. Failed to show review. |
PromotionResponseFailGetViewInfo | -3000017 | [Promotion] Response error. Failed to get view info |
PromotionResponseFailGetBadgeInfo | -3000018 | [Promotion] Response error. Failed to get badge info. |
PromotionNetworkErrorShowExit | -3000019 | [Promotion] Network error is occured on show exit. |
PromotionNetworkErrorGetAppInvitationData | -3100001 | [Promotion UA] Network error occured on Get App Inviation data: %s |
PromotionResponseFailGetAppInvitationData | -3100002 | [Promotion UA] Fail to get App Invitation Data. Please check data from promotion server: %s |
UserEngagementResponseFail | -3200001 | [Promotion UE] Response error. |
UserEngagementAlreadySetReady | -3200002 | [Promotion UE] Already in ready to UE. |
UserEngagementHandlerNotRegistered | -3200003 | [Promotion UE] Handler not registered. |
UserEngagementNotLogined | -3200004 | [Promotion UE] Unauthorized User. Please do login first. |
UserEngagementEmptyCouponId | -3200005 | [Promotion UE] Coupon value is empty. |
UserEngagementEmptyMarketPid | -3200006 | [Promotion UE] Market pid value is empty. |
UserEngagementListenerNotRegistered | -3200007 | [Promotion UE] Listener is not registered. |
PushNotInitialized | -4000001 | [Push] Not initialized. initialize user first. |
PushInvalidParamLocalPush | -4000002 | [Push] Invalid Param Local Push |
PushInvalidParamRemotePush | -4000003 | [Push] Invalid Param Remote Push |
PushNetworkError | -4000004 | [Push] Network Error |
PushResponseFailGetRemotePush | -4000005 | [Push] Bad response on Get Remote Push: %s |
PushResponseFailSetRemotePush | -4000006 | [Push] Bad response on Set Remote Push: %s |
IAPNotInitialize | -6000001 | [IAP] Not Initialized. Initialize User First. |
IAPAlreadyInInitialize | -6000002 | [IAP] Already IAP Initialized. |
IAPNetworkError | -6000003 | [IAP] Network error occured: %s |
IAPNotSupportedMarket | -6000004 | [IAP] Invalid or NOT supported market identifier. (%s) |
IAPNeedLogin | -6000005 | [IAP] Unauthorized User. Please do login first. |
IAPNeedShopInitialize | -6000006 | [IAP] Not Shop Initialized. Initialize Shop First. |
IAPNotSupportedOSVersion | -6000007 | [IAP] Unsupported OS Version. |
IAPNeedRestore | -6000008 | [IAP] Unfinished transactions: %s exists. Need restore. |
IAPRestoreNotOwned | -6000009 | [IAP] Restore Item not owned. |
IAPNothingToRestore | -6000010 | [IAP] Nothing to restore. |
IAPFailRestore | -6000011 | [IAP] Fail to restore. |
IAPRestrictPayments | -6000012 | [IAP] This device is not able or allowed to make payments. |
IAPNetworkJsonException | -6000013 | [IAP] Json Exception during IAP Network |
IAPMarketNotSupportedAPI | -6000014 | [IAP] Market did not support this API |
IAPFailMarketInitialize | -6000015 | [IAP] Market data is nothing |
IAPResponseError | -6000016 | [IAP] Network response exception is occured. |
IAPInProgressPurchasing | -6000101 | [IAP] Already in progress purchasing. |
IAPInProgressRestoring | -6000102 | [IAP] Already in progress restoring. |
IAPInProgressCheckPromotePurchase | -6000103 | [IAP] Already in progress check promote purchase. |
IAPInProgressConnectingAppStore | -6000104 | [IAP] Already in progress connecting App Store. |
IAPInProgressMarketSelection | -6000105 | [IAP] Already in progress market selection. |
IAPAppStoreError | -6000201 | [IAP] App Store Error: %s |
IAPAppStoreResponseEmpty | -6000202 | [IAP] Fail to get response data from App Store. Response data is empty. |
IAPCannotFindGamePID | -6000301 | [IAP] Can not find game pid matching with market pid, PID is empty or nil. |
IAPProductNotExist | -6000302 | [IAP] Can not find product in IAP Server: %s |
IAPEmptyMarketPID | -6000303 | [IAP] Fail to request purchase product. MarketPID is empty or nil. |
IAPFailCreateSKPayment | -6000304 | [IAP] SKPayment create failed. |
IAPEmptyTransaction | -6000305 | [IAP] Fail to request purchase. Purchased transaction is empty. |
IAPEmptyProduct | -6000306 | [IAP] Can not find market product using marker pid: %s |
IAPCancelPayment | -6000307 | [IAP] Failed to purchase(Cancelled): %s |
IAPFailPayment | -6000308 | [IAP] Failed to purchase |
IAPInvalidMarketPID | -6000309 | [IAP] Failed to convert to MarketPIDs to PID set. |
IAPPurchaseParamJsonException | -6000310 | [IAP] Purchase parameter json exception is occured. |
IAPShopInfoParamJsonException | -6000311 | [IAP] Shopinfo parameter json exception is occured. |
IAPBadgeParamJsonException | -6000312 | [IAP] Badge parameter json exception is occured. |
IAPInvalidParamEmptyMarketPID | -6000401 | [IAP] Game pid is empty. |
IAPInvalidParamLocationCode | -6000402 | [IAP] Location code is empty |
IAPBlockedUser | -6000501 | [IAP] This user has been blocked: %s |
IAPPromoCodeMatchMultiMarketPID | -6000502 | [IAP] Multiple product matched in market pid: %s |
IAPPromoCodeNotMatchMarketPID | -6000503 | [IAP] No product matched in market pid: %s |
IAPPromoCodeAlreadyUsed | -6000504 | [IAP] This Promotion code already used: %s |
IAPAppleReceiptNotConnected | -6000505 | [IAP] Apple receipt verifying server can not connected: %s |
IAPServerDefaultError | -6000506 | [IAP] IAP server error: %s |
IAPInitializeMarketListIsEmpty | -6000601 | [IAP] Resopnse failed. Market list is empty. |
IAPInitializeMarketURLISEmpty | -6000602 | [IAP] Resopnse failed. Market url is empty. |
IAPEmptyMarketURL | -6000603 | [IAP] Selected market URL is empty. |
IAPNotSelectedMarket | -6000604 | [IAP] Failed to select market. |
IAPPlayStoreLaunchPurchaseFlowException | -6000701 | [IAP] PlayStore launchpurchaseflow exception is occured. |
IAPPlayStoreSetupFail | -6000702 | [IAP] PlayStore start setup fail |
IAPPlayStoreQueryInventoryFail | -6000703 | [IAP] PlayStore query inventory fail when initialize |
IAPOneStoreProductListEmpty | -6000801 | [IAP] OneStore Product List is empty. |
IAPOneStoreProductNetworkError | -6000802 | [IAP] OneStore requestProductInfo network fail |
IAPOneStoreProductInfoError | -6000803 | [IAP] OneStore requestProductInfo fail. |
IAPOneStoreInvalidRequestID | -6000804 | [IAP] OneStore requestID is invalid |
IAPOneStorePurchaseError | -6000805 | [IAP] OneStore purchase fail |
IAPOneStoreNetworkNullError | -6000806 | [IAP] Onestore Network response null error |
IAPOneStoreNetworkInvalidError | -6000807 | [IAP] Onestore Network response invalid error |
IAPLebiInitializeNetworkError | -6000901 | [IAP] Lebi Initialize fail |
IAPLebiInitializeJsonException | -6000902 | [IAP] Lebi initialize json exception is occured. |
IAPLebiPurchaseNetworkError | -6000903 | [IAP] Lebi purchase fail |
IAPLebiPurchaseJsonException | -6000904 | [IAP] Lebi purchase json exception is occured. |
IAPLebiVerifyOrderNetworkError | -6000905 | [IAP] Lebi verifyorder fail |
IAPLebiVerifyOrderJsonException | -6000906 | [IAP] Lebi verifyorder json exception is occured. |
IAPLebiBalanceNetworkError | -6000907 | [IAP] Lebi balance fail |
IAPLebiBalanceParamJsonException | -6000908 | [IAP] Lebi balance json exception is occured. |
IAPLebiPostException | -6000909 | [IAP] Lebi post exception is occured. |
IAPLebiInternalRequestException | -6000910 | [IAP] Lebi Internal request exception is occured. |
IAPLebiRestoreNetworkError | -6000911 | [IAP] Lebi restore create invalid response data |
IAPV4NotInitialize | -6100001 | [IAPv4] Not Initialized. Initialize User First. |
IAPV4NetworkError | -6100002 | [IAPv4] Network error occured: %s |
IAPV4NotSupportedMarket | -6100003 | [IAPv4] Market is not supported. |
IAPV4NeedLogin | -6100004 | [IAPv4] Unauthorized User. Please do login first. |
IAPV4NeedMarketConnect | -6100005 | [IAPv4] Not Shop Initialized. Initialize Shop First. |
IAPV4NeedRestore | -6100006 | [IAPv4] Unfinished transactions: %s exists. Need restore. |
IAPV4NothingToRestore | -6100007 | [IAPv4] Nothing to restore. |
IAPV4FailToRestore | -6100008 | [IAPv4] Fail to restore. |
IAPV4RestrictPayments | -6100009 | [IAPv4] This device is not able or allowed to make payments. |
IAPV4FailMarketConnect | -6100010 | [IAPv4] Market data is nothing |
IAPV4ResponseError | -6100011 | [IAPv4] response parsing exception is occured. |
IAPV4MarketNotSupportedAPI | -6100012 | [IAPv4] Market did not support this API |
IAPV4InProgressMarketConnect | -6100101 | [IAPv4] Already in progress market connect. |
IAPV4InProgressPurchasing | -6100102 | [IAPv4] Already in progress purchasing. |
IAPV4InProgressRestoring | -6100103 | [IAPv4] Already in progress restoring. |
IAPV4InProgressCheckPromote | -6100104 | [IAPv4] Already in progress check promote purchase. |
IAPV4InProgressConnectAppStore | -6100105 | [IAPv4] Already in progress connect App Store. |
IAPV4InProgressMarketSelect | -6100106 | [IAPv4] Already in progress market select. |
IAPV4AppStoreError | -6100201 | [IAPv4] App Store Error: %s |
IAPV4AppStoreResponseEmpty | -6100202 | [IAPv4] Fail to get response data from App Store. Response data is empty. |
IAPV4ProductNotExsitInAppStore | -6100203 | [IAPv4] Can not find product: %s |
IAPV4FinishMarketPidEmpty | -6100301 | [IAPv4] Finished market PID is empty or nil. |
IAPV4PromoteMarketPidEmpty | -6100302 | [IAPv4] Market pid is empty. |
IAPV4FailCreateSKPayment | -6100303 | [IAPv4] Fail to create payment. |
IAPV4FailToConvertNSSet | -6100304 | [IAPv4] Fail to conver to MarketPids to Pid set. |
IAPV4InvalidLogType | -6100305 | [IAPv4] Invalid log type. |
IAPV4ProductNotExist | -6100306 | [IAPv4] Failed to request purchase product. Market product not found. |
IAPV4RequestProductJsonException | -6100307 | [IAPv4] reqeust Product Json Exception is occured. |
IAPV4PurchaseParamJsonException | -6100308 | [IAPv4] Purchase parameter json exception is occured. |
IAPV4RequestMarketJsonException | -6100309 | [IAPv4] reqeust Market Json Exception is occured. |
IAPV4ProductInfoJsonException | -6100310 | [IAPv4] Product Info Json exception is occured. |
IAPV4CancelPayment | -6100311 | [IAPv4] Failed to purchase(Cancelled) |
IAPV4FailPayment | -6100312 | [IAPv4] Failed to purchase |
IAPV4EmptyParamMarketPID | -6100401 | [IAPv4] Market pid is empty. |
IAPV4EmptyMarketList | -6100501 | [IAPv4] Market list from IAP server is empty. |
IAPV4EmptyMarketURL | -6100502 | [IAPv4] Response failed. Market selection URL is emptry or nil. |
IAPV4MarketPidListEmptyInIAPServer | -6100503 | [IAPv4] Failed to request product indentifiers. MarketPID is empty or nil. |
IAPV4EmptyProductList | -6100504 | [IAPv4] IAP need get product info. get product info or showPayment API. |
IAPV4ProductNotExistInIAPServer | -6100505 | [IAPv4] Invalid parameter. Unknown market product identifier: %s |
IAPV4PlayStoreLaunchPurchaseFlowException | -6100701 | [IAPv4] PlayStore launchpurchaseflow exception is occured. |
IAPV4PlayStoreSetupFail | -6100702 | [IAPv4] PlayStore start setup fail |
IAPV4PlayStoreQueryInventoryFail | -6100703 | [IAPv4] PlayStore query inventory fail when initialize |
IAPV4PlayStoreFinishFail | -6100704 | [IAPv4] PlayStore Finish fail. |
IAPV4OneStoreProductListEmpty | -6100801 | [IAPv4] OneStore Product List is empty. |
IAPV4OneStoreProductNetworkError | -6100802 | [IAPv4] OneStore requestProductInfo network fail |
IAPV4OneStoreProductInfoError | -6100803 | [IAPv4] OneStore requestProductInfo fail. |
IAPV4OneStoreInvalidRequestID | -6100804 | [IAPv4] OneStore requestID is invalid |
IAPV4OneStorePurchaseError | -6100805 | [IAPv4] OneStore purchase fail |
IAPV4OneStoreNetworkNullError | -6100806 | [IAPv4] Onestore Network response null error |
IAPV4OneStoreNetworkInvalidError | -6100807 | [IAPv4] Onestore Network response invalid error |
IAPV4OneStoreFinishFail | -6100808 | [IAPv4] OneStore Finish fail. |
IAPV4LebiInitializeNetworkError | -6100901 | [IAPv4] Lebi Initialize fail |
IAPV4LebiInitializeJsonException | -6100902 | [IAPv4] Lebi initialize json exception is occured. |
IAPV4LebiPurchaseNetworkError | -6100903 | [IAPv4] Lebi purchase fail |
IAPV4LebiPurchaseJsonException | -6100904 | [IAPv4] Lebi purchase json exception is occured. |
IAPV4LebiVerifyOrderNetworkError | -6100905 | [IAPv4] Lebi verifyorder fail |
IAPV4LebiVerifyOrderJsonException | -6100906 | [IAPv4] Lebi verifyorder json exception is occured. |
IAPV4LebiBalanceNetworkError | -6100907 | [IAPv4] Lebi balance fail |
IAPV4LebiBalanceParamJsonException | -6100908 | [IAPv4] Lebi balance json exception is occured. |
IAPV4LebiPostException | -6100909 | [IAPv4] Lebi post exception is occured. |
IAPV4LebiInternalRequestException | -6100910 | [IAPv4] Lebi Internal request exception is occured. |
IAPV4LebiRestoreNetworkError | -6100911 | [IAPv4] Lebi restore create invalid response data |
IAPV4LebiCancel | -6100912 | [IAPv4] Lebi Charge cancel. |
IAPV4LebiFinishFail | -6100913 | [IAPv4] Lebi Finish fail. |