跳到主要内容

请求验证码(RequestVerifyCode)

AndroidiOSWindows
如果您使用的是 Unity 引擎,请参见 Unity SDK 的 RequestVerifyCode

函数定义

UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
static bool RequestVerifyCode(
const FString Account,
const UVerifyCodeType CodeType,
const FString PhoneAreaCode,
const FString ExtraJson = "{}");

入参说明

参数类型说明
AccountFString账号,可用邮箱和手机号注册
CodeTypeUVerifyCodeType请求验证码的类型
PhoneAreaCodeFString手机区域码,例如 "86" 为中国。如果用邮件地址注册账号,字段则为空。
ExtraJsonFString扩展信息

回调处理

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

回调 ID 是 kMethodIDAuthRequestVerifyCode

代码示例

UINTLSDKAPI::RequestVerifyCode("youremail@sample.com", UVerifyCodeType::kVerifyCodeTypeRegister, "");