跳到主要内容

合规性设置用户信息与生日(ComplianceSetUserInfoWithBirthday)

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

合规流程中设置玩家的区域和生日。

函数定义

UFUNCTION(BlueprintCallable, Category = "INTLSDKAPI")
static void ComplianceSetUserInfoWithBirthday(
const FString Region,
const int32 BirthdayYear = 0,
const int32 BirthdayMonth = 0,
const int32 BirthdayDay = 0);

入参说明

参数类型说明
RegionFStringISO 3166-1 国家或地区的数字代码
例如 156 代表中国,040 代表奥地利
BirthdayYearint32出生年份
BirthdayMonthint32出生月份
BirthdayDayint32出生日

回调处理

回调处理接口是 ComplianceResultObserver。回调数据结构是 ComplianceResult

回调 ID 是 kMethodIDComplianceSetUserInfoWithBirthday

代码示例

UINTLSDKAPI::ComplianceSetUserInfoWithBirthday("040",2000,1,1);