유저 누락이 발생하는 경우
1. 식별 함수를 적절하게 호출
Do's
Marketap.identify("user_123")
Marketap.login("user_123")Don'ts
Marketap.identify(null) // null
Marketap.identify("") // 빈 문자열
Marketap.login(null) // null
Marketap.login("") // 빈 문자열
Marketap.identify(false) // boolean타입 불가
Marketap.identify(12345) // 숫자형 타입 불가
Marketap.identify(["user_123", "user_456"]) // 배열 타입 불가관련 문서
유저 정보 식별2. 유저 적재 지연
Last updated
Was this helpful?
