跳到主要内容

用验证码修改账号(ModifyAccountWithVerifyCode)

[MSDK & Player Network SDK] 通过验证码修改账号,支持 Player Network SDK 和 MSDK 。

支持的平台

支持Android, iOS, Windows 平台。

函数定义

void ModifyAccountWithVerifyCode(
string oldAccount,
string oldAccountVerifyCode,
string oldPhoneAreaCode,
string newAccount,
string newAccountVerifyCode,
string newPhoneAreaCode,
string channel = "Self",
string langType = "en_US",
string extraJson = "{}");

入参说明

参数类型说明
oldAccountstring旧账号
oldphoneAreaCodestring旧账号的手机区域码。如果账号为邮箱注册,则为空。
passwordstring更多信息,请参见 密码规则
newAccountstring新账号
newAccountVerifyCodestring新账号的验证码
newphoneAreaCodestring新账号的手机区域码。如果账号注册为邮箱,则为空。
channelstring渠道
Player Network SDK 目前没用到,可为""
langTypestring语言类型
Player Network SDK 目前没用到,可为""
extraJsonstring扩展信息

回调处理

回调处理接口是 GUAAccountResultObservers。回调数据结构是 GUAAccountResult

回调事件是 AccountEvents 。 回调 ID 是 GUA_ACCOUNT_MODIFY_ACCOUNT

代码示例

UnionAdapterAPI.GetAccountService().ModifyAccountWithVerifyCode("oldAccount", "oldAccountVerifyCode", "886", "newAccount", "newAccountVerifyCode", "86");