跳到主要内容

用验证码重置密码(ResetPasswordWithVerifyCode)

AndroidiOSWindows
如果您使用的是 Unreal Engine,请参见 Unreal Engine SDK 的 ResetPasswordWithVerifyCode

函数定义

public static void ResetPasswordWithVerifyCode(
string account,
string verifyCode,
string phoneAreaCode,
string newPassword,
string extraJson = "{}");

入参说明

参数类型说明
accountstring账号,可用邮箱和手机号注册
verifyCodestring验证码
phoneAreaCodestring手机区域码,例如 "86" 为中国。如果用邮件地址注册账号,字段则为空。
newPasswordstring新的密码。更多信息,请参见 密码规则

回调处理

回调处理接口是 AuthAccountResultObserver。回调数据结构是 AccountResult

回调 ID 是 INTL_AUTH_RESET_PASSWORD

代码示例

string account = "";
string verifyCode = "";
string phoneAreaCode = "86";
string newPassword = "";

INTLAPI.ResetPasswordWithVerifyCode(account, verifyCode, phoneAreaCode, newPassword);