用验证码修改账号(ModifyAccountWithVerifyCode)
函数定义
public void ModifyAccountWithVerifyCode(
string oldAccount,
string oldAccountVerifyCode,
string oldPhoneAreaCode,
string newAccount,
string newAccountVerifyCode,
string newPhoneAreaCode,
string extraJson = "{}");
入参说明
参数 | 类型 | 说明 |
---|---|---|
oldAccount | string | 旧账号 |
oldAccountVerifyCode | string | 旧账号的验证码 |
oldPhoneAreaCode | string | 旧账号的手机区域码。如果账号为邮箱注册,则为空。 |
newAccount | string | 新账号 |
newAccountVerifyCode | string | 新账号的验证码 |
newPhoneAreaCode | string | 新账号的手机区域码。如果账号注册为邮箱,则为空。 |
extraJson | string | 扩展信息 |
回调处理
回调处理接口是 AuthAccountResultObserver。回调数据结构是 AccountResult。
回调 ID 是 INTL_AUTH_MODIFY_ACCOUNT
。
代码示例
string oldAccount = "";
string oldAccountVerifyCode = "";
string oldPhoneAreaCode = "86";
string newAccount = "";
string newAccountVerifyCode = "";
string newPhoneAreaCode = "86";
INTLAPI.ModifyAccountWithVerifyCode(oldAccount, oldAccountVerifyCode, oldPhoneAreaCode,
newAccount, newAccountVerifyCode, newPhoneAreaCode);