action_link에서 발생한 전환을 올바르게 추적하기 위해 Google에서는 URL 매개변수 rwg_token를 설정하며, 이 매개변수는 전환 시 반환되어야 합니다.
사용자가 Google을 통해 방문 페이지를 방문할 때 30일 동안 제공된 모든 action_link에 추가되는 rwg_token URL 매개변수를 유지해야 합니다. 사용자가 30일 이내에 작업 링크를 통해 페이지를 다시 방문하면 기존 rwg_token를 새 토큰으로 대체하고 30일의 전체 기간을 재설정해야 합니다. 이 정보를 유지하는 데 권장되는 방법은 쿠키를 사용하는 것입니다.
rwg_token를 유지하는 데 권장되는 접근 방식은 모든 페이지 조회 시 실행되는 맞춤 HTML 태그를 만드는 것입니다. 맞춤 HTML 태그에는 URL 매개변수에서 rwg_token를 추출하고 rwg_token를 30일 동안 유지하는 JavaScript가 포함되어야 합니다. 퍼스트 파티 쿠키 또는 데이터 영역 변수를 사용하여 데이터를 유지할 수 있습니다.
Google 애널리틱스: GA4 이벤트 태그
GA4 이벤트 태그를 사용하면 올바른 측정 ID를 사용하여 rwg_token를 Google에 전달할 수 있습니다.
GA4 이벤트 태그를 구성할 때는 다음 필드를 시작해야 합니다.
구성 태그:None : Manually set ID로 설정합니다.
측정 ID 계정에 적절한 측정 ID를 설정합니다.
이벤트 이름: rwg_conversion로 설정합니다.
이벤트 매개변수: 새 이벤트 매개변수 rwg_token를 추가합니다.
이 토큰의 값은 토큰의 영구 저장 값이어야 합니다.
각 GA4 이벤트 태그는 트리거와 연결되어야 합니다. 사용자가 Google 장소 작업 링크에서 발생한 거래를 완료할 때 이 이벤트 태그를 실행하는 트리거를 만들어야 합니다.
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-05-26(UTC)"],[[["This guide provides instructions for implementing conversion tracking using Google Tag Manager (GTM) for websites already utilizing GTM."],["The process involves creating two tags: a Custom HTML Tag to store the `rwg_token` for 30 days and a GA4 Event Tag to send the `rwg_token` to Google Analytics."],["The Custom HTML Tag extracts and persists the `rwg_token` URL parameter, which is crucial for tracking conversions originating from Google Place Action links."],["The GA4 Event Tag is configured with a specific Measurement ID, event name (`rwg_conversion`), and event parameter (`rwg_token`) to forward conversion data to Google Analytics."],["Ensure no Personally Identifiable Information (PII) is sent to Google without explicit user consent or legal permission."]]],["Conversion tracking using Google Tag Manager involves two primary steps: creating a Custom HTML Tag and a Google Analytics: GA4 Event Tag. The Custom HTML Tag captures and stores the `rwg_token` URL parameter (via cookies or a data layer variable) for 30 days, replacing it with a new token upon subsequent visits. The GA4 Event Tag then forwards this persisted `rwg_token` to Google, with configuration steps including setting the measurement ID, event name to `rwg_conversion`, and event parameter `rwg_token`. This tag should be fired upon a user's transaction completion.\n"]]