profiles : 설정할 유저 프로필. java.util.Map<String,Object> 형태로 이름과 값을 입력해야 합니다. profiles는 null이 입력 될 수 없습니다.
Map<String, Object> profiles = new HashMap<>();
//PredefinedUserProfile
profiles.put(DFUserProfile.NAME, "JACK");//String
profiles.put(DFUserProfile.PUSH_OPTIN, true);//Boolean
//CustomUserProfile
profiles.put("custom1", 34000L);//Long
profiles.put("custom2", 42.195);//Double
profiles.put("custom3", new Date());//Date
profiles.put("custom4", new Long[]{20L,30L});//Array of Long
profiles.put("custom5", new Double[]{1.1,1.2});//Array of Double
profiles.put("custom6", new String[]{"Hello","World"});//Array of String
DfineryProperties.setUserProfiles(profiles);
val profiles = mapOf<String, Any>(
//PredefinedUserProfile
DFUserProfile.NAME to "JACK",
DFUserProfile.PUSH_OPTIN to true,
//CustomUserProfile
"custom1" to 34000L,//Long
"custom2" to 42.195,//Double
"custom3" to Date(),//Date
"custom4" to longArrayOf(20L, 30L),//Array of Long
"custom5" to doubleArrayOf(1.1, 1.2),//Array of Double
"custom6" to arrayOf<String>("Hello", "World")//Array of String
)
DfineryProperties.setUserProfiles(profiles)
사용 예시
유저 프로필에는 표준 키 값 들이 있으며, 키 값에 DFUserProfile에 있는 상수를 입력하면 적용됩니다.
오후 9시 부터 오전 8시 사이에는 별도의 야간 광고성 알림 동의를 받아야 광고성 알림을 전송할 수 있으므로 해당 시간에 메시지를 발송하고 싶으실 경우 PUSH_NIGHT_ADS_OPTIN 값을 사용하여 동의를 받아 주시기 바랍니다. (불법 스팸 방지를 위한 정보통신망법 안내서, 한국인터넷진흥원, 2020.07)
명칭
채널
설명
DFUserProfile.PUSH_OPTIN
푸시
푸시 채널에 대한 정보성 알림 동의
DFUserProfile.PUSH_ADS_OPTIN
푸시
푸시 채널에 대한 광고성 알림 동의
DFUserProfile.PUSH_NIGHT_ADS_OPTIN
푸시
푸시 채널에 대한 야간 광고성 알림 동의
DFUserProfile.SMS_ADS_OPTIN
문자
문자 채널에 대한 광고성 알림 동의
DFUserProfile.KAKAO_ADS_OPTIN
친구톡
카카오 친구톡 채널에 대한 광고성 알림 동의
커스텀 유저 속성 설정하기
커스텀 유저 속성을 설정하고 싶을 경우 DFINERY 콘솔에 해당하는 유저 프로필의 커스텀 유저 속성을 생성하고 키 값으로 입력하여 설정하면 됩니다.
날짜 및 시간 형식의 설정해야 할 경우 java.util.Date을 사용하여 입력해야 합니다. 입력한 값은 TimeZone 정보를 포함하여 입력됩니다.
//1991.08.26를 Calendar를 사용해 입력했을 경우
Calendar registeredDate = Calendar.getInstance();
registeredDate.set(Calendar.YEAR, 1991);
registeredDate.set(Calendar.MONTH, Calendar.AUGUST);
registeredDate.set(Calendar.DATE, 26);
DfineryProperties.setUserProfile("registered_date", registeredDate.getTime());
//1991.08.26을 SimpleDateFormat을 사용해 입력했을 경우
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("yyyy-MM-dd");
Date registeredDate = simpleDateFormat.parse("1991-08-26");
DfineryProperties.setUserProfile("registered_date", registeredDate);
//1991.08.26를 Calendar를 사용해 입력했을 경우
val registeredDate = Calendar.getInstance()
registeredDate[Calendar.YEAR] = 1991
registeredDate[Calendar.MONTH] = Calendar.AUGUST
registeredDate[Calendar.DATE] = 26
DfineryProperties.setUserProfile("registered_date", registeredDate.time);
//1991.08.26을 SimpleDateFormat을 사용해 입력했을 경우
val simpleDateFormat = SimpleDateFormat("yyyy-MM-dd")
val registeredDate = simpleDateFormat.parse("1991-08-26")
DfineryProperties.setUserProfile("registered_date", registeredDate)