用旧密码重置密码(ResetPasswordWithOldPassword)
函数定义
UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
static bool ResetPasswordWithOldPassword(
const FString Account,
const FString OldPassword,
const FString PhoneAreaCode,
const FString NewPassword,
const FString ExtraJson = "{}");
入参说明
参数 | 类型 | 说明 |
---|---|---|
账号 | FString | 账号,可用邮箱和手机号注册 |
OldPassword | FString | 旧密码 |
PhoneAreaCode | FString | 手机区域码,例如 "86" 为中国。如果用邮件地址注册账号,字段则为空。 |
NewPassword | FString | 新的密码。更多信息,请参见 密码规则。 |
ExtraJson | FString | 扩展信息 |
回调处理
回调处理接口是 AuthAccountResultObserver。回调数据结构是 AccountResult。
回调 ID 是 kMethodIDAuthResetPassword
。
代码示例
UINTLSDKAPI::ResetPasswordWithOldPassword("youremail@sample.com", "oldpassword", "", "newpassword");