로그인 / 로그아웃
mtap.login(user.id); // "USER_ID_1234"
...
mtap.logout();mtap.login(user.id, // "USER_ID_1234"
{
// 유저 속성
mkt_name: user.name, // 'John Doe',
mkt_email: user.email, // '[email protected]',
mkt_gender: user.gender // 'Male',
},
{
// 이벤트 속성
is_first_login: false
}
);Marketap.login(user.id); // "USER_ID_1234"
...
Marketap.logout()Marketap.login(
userId = "USER_ID_1234",
userProperties = mapOf(
"mkt_name" to "John Doe",
"mkt_email" to "[email protected]",
"mkt_gender" to "Male"
),
eventProperties = mapOf(
"is_first_login" to false
)
)Best Practice
유저와 기기간의 관계에 대한 이해
유저와 기기간의 관계Last updated
Was this helpful?
