dedupe_id를 통한 이벤트 중복 제거AppLovin Pixel, site-to-site 연동, 또는 Android/iOS AppLovin SDK 중 둘 이상의 경로를 통해 동일한 이벤트를 보고하는 경우, 이러한 이벤트의 중복을 제거하는 조치를 취하십시오. 둘 이상의 연동 경로에 보고하는 이벤트를 중복 제거하지 않으면, 동일한 사용자 이벤트가 여러 번 등록되어 리포팅이 부정확해질 위험이 있습니다.
동일한 이벤트의 각 보고에 대해 일치하는 값을 가진 dedupe_id를 설정하면, AppLovin이 이벤트를 자동으로 중복 제거합니다.
이벤트를 안정적으로 중복 제거하려면, 이벤트를 보고할 때 각 연동 경로(AppLovin Pixel, site-to-site 연동, 또는 Android/iOS SDK)에 동일한 dedupe_id를 전달하여 해당 이벤트가 동일한 사용자 액션을 나타냄을 표시하십시오.
dedupe_id로는 임의의 알파뉴메릭(영문자 및 숫자) 문자열(예: 주문 ID 또는 UUID)을 사용할 수 있습니다.
각 연동 경로에서 동일한 dedupe_id를 전달하십시오.
<script>
// Include `dedupe_id` as the optional fourth argument:
axon("track", «event-name», «event-data», {"dedupe_id": "«your-dedupe-id»"});
</script>
Map<String, Object> options = new HashMap<>();
options.put( "dedupe_id", "«your-dedupe-id»" );
sdk.getEventService().trackEvent( «event-name», «event-data», options );
sdk.eventService.trackEvent(«event-name», «event-data», mapOf("dedupe_id" to "«your-dedupe-id»"))
sdk.eventService.track(event: "«event-name»", parameters: [«event-data»], options: ["dedupe_id" : "«your-dedupe-id»"])
[sdk.eventService trackEvent: @"«event-name»" parameters: @{«event-data»} options: @{@"dedupe_id" : @"«your-dedupe-id»"}];
AppLovin은 동일한 dedupe_id를 가진 이벤트가 5분 이내의 간격으로 발생하는 경우 이를 병합합니다.
이전 이벤트가 발생한 지 5분이 지난 후에 동일한 dedupe_id를 가진 두 번째 이벤트가 도착하면, AppLovin은 두 번째 이벤트를 삭제합니다.