Skip to main content

Query Registration Status (QueryRegisterStatus)

AndroidiOSWindows
If you're using Unreal Engine, see the QueryRegisterStatus for Unreal Engine SDK.

Query the user's registration status.

Function Definition

public void QueryRegisterStatus( string account, string phoneAreaCode, string extraJson);

Input Parameters

ParametersTypeExplanation
accountstringThe account allows registration via email address or phone number.
phoneAreaCodeStringPhone area code, e.g., "86" for China.If the account is registered with an email address, this field is empty.
extraJsonStringAdditional information

Callback processing

The callback processing interface is AuthAccountResultObserver.The callback data structure is AccountResult.

The callback ID is INTL_AUTH_QUERY_REGISTER_STATUS.

Code example

string account = "";
string phoneAreaCode = "";

INTLAPI.QueryRegisterStatus(account, phoneAreaCode);