안녕하세요. 현재 쇼핑몰앱을 운영하고 있는 회사입니다.
현재 카카오픽셀 & SDK 통해 통계를 잡고 있는데요…
카카오 광고를 통해 유입된 구매건만 통계를 잡을수 있나요?
Purchase event = new Purchase();
event.tag = "YELLOW_SHOPPING";
ArrayList products = new ArrayList();
Product product = new Product();
product.name = productName;
products.add(product);
event.products = products;
event.currency = Currency.getInstance(Locale.KOREA);
event.total_quantity = totalQuantity;
event.total_price = totalPrice;
KakaoAdTracker.getInstance().sendEvent(event);
이런식으로 구현했습니다.
지원 부탁드립니다.