Query Registration Status (QueryRegisterStatus)
Query the user's registration status.
Function Definition
public void QueryRegisterStatus( string account, string phoneAreaCode, string extraJson);
Input Parameters
| Parameters | Type | Explanation |
|---|---|---|
| account | string | The account allows registration via email address or phone number. |
| phoneAreaCode | String | Phone area code, e.g., "86" for China.If the account is registered with an email address, this field is empty. |
| extraJson | String | Additional 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);