ADID Tracker - Web SDK Sample

현재 UUID

로딩 중...

확인 중...

UUID 소스: -

Google IDs (자동 캡처)

ID 종류 소스
GA Client ID - _ga 쿠키 (클릭 불필요)
GCLID - URL 또는 _gcl_aw 쿠키
DCLID - URL 또는 _gcl_dc 쿠키
GBRAID - URL (iOS App)
WBRAID - URL (iOS Web)

💡 테스트: URL에 ?gclid=test123 파라미터를 추가해보세요

테스트 액션

앱 연동 테스트

딥링크: -

로그

SDK 초기화 대기 중...

SDK 사용법

<script src="/sdk/adid-tracker.js"></script>
<script>
    // SDK 초기화
    AdidTracker.init({
        apiBaseUrl: 'http://localhost:8080',
        debug: true,
        autoRegister: true  // 페이지 로드 시 자동 등록
    });

    // 앱으로 이동
    AdidTracker.openApp({
        scheme: 'myapp',
        path: 'open',
        fallbackUrl: 'https://play.google.com/store/apps/details?id=com.myapp'
    });

    // UUID가 포함된 URL 생성
    const url = AdidTracker.buildUrl('https://myapp.com/landing', {
        campaign: 'summer_sale'
    });
</script>