인앱 이벤트 API
using System.Collections;
using System.Collections.Generic;1 회원 분석
1.1 회원가입 분석
Dictionary<string, object> event = new Dictionary<string, object>();
event.Add("event", "w_signup_complete");
event.Add("signupTp", "email"); //회원가입 방식
DOT.logEvent(event);1.2 로그인 분석
Dictionary<string, object> event = new Dictionary<string, object>();
event.Add("event", "w_login_complete");
event.Add("loginTp", "facebook"); //로그인 방식
DOT.logEvent(event);1.3 회원 정보 분석
2. Page 분석
2.1 Page 기본 분석
2.2 Page Identity 분석
2.3 체류 시간 분석
2.4 상품 페이지 분석
3. Event 분석
3.1 내부 검색어 분석
3.2 검색 결과 클릭 분석
3.3 장바구니 분석
3.4 클릭 이벤트 분석
3.4.1 버튼 클릭
3.4.2 배너 클릭
3.4.3 메뉴 클릭
3.5 카테고리별 이벤트 분석
Ecommerce
Fintech
Mobility
4. Purchase 분석
4.1 단일 상품 구매 분석
4.2 복수 상품 구매 분석
Last updated
Was this helpful?