어트리뷰션을 위한 광고 식별자
Overview
Branch는 클릭, 설치 및 기타 이벤트 요청 시 Branch 링크에서 다음 광고 식별자를 지원합니다. 클릭 및 설치 시 동일한 식별자를 사용할 수 있는 경우 Branch는 식별자 매칭을 통해 이 값을 매칭하여 어트리뷰션할 수 있습니다.
식별자 유형
iOS 식별자
광고 식별자
iOS IDFA
유효한 Identifier For Advertising (IDFA)이 없는 경우 Branch는 어트리뷰션을 수행하기 위해 확률적 모델링으로 자동 전환되며 (다음 섹션 참조), 향후 이러한 설치를 측정할 수 있도록 자체적인 설치 레벨 식별자를 자동으로 할당합니다. 이는 기본적인 동작 원리이지만, 파트너가 모델링 결정에 사용할 수 있도록 디바이스 IP 및 유저 에이전트를 전달하는 것이 필수입니다.
Apple introduced its Identifier for Advertisers (IDFA) with iOS 6.0 primarily through the ASIdentifierManager class in iOS, which provides apps with access to an identifier that you can use for serving advertisements, as well as a flag that indicates if a user has enabled the Limit Ad Tracking feature. The IDFA value is an alphanumeric string that is unique to each device, and uses an upper case-format with hyphens (for example, AAAAAAAAA-BBBB-CCCC-1111-222222220000
).
- Branch log-level parameter:
user_data_idfa
- Branch 포스트백 매크로:
${(user_data.idfa)!}
and<#if (user_data.limit_ad_tracking)! >0<#else>1</#if>
If you’re using the ${(user_data.idfa)!}
macro in a postback URL, then you must specify the <#if (user_data.limit_ad_tracking)! >0<#else>1</#if>
macro to indicate if the user has enabled the Limit Ad Tracking feature (where 0 is limited). Or if the user has enabled this feature, you can set the ios_ad_tracking_disabled parameter to 1.
SDK 구현이 설치 (첫 "앱 오픈" 이벤트) 및 설치 후의 인앱 이벤트에 대해 IDFA를 수집하지 않는 경우, 클릭에 지정된 값을 설치(또는 다른 이벤트)에 대해 지정된 값과 매칭하여 어트리뷰션에 사용하는 데 IDFA를 사용할 수 없습니다.
Android 식별자
Google AAID
The Google Advertising Identifier (AID) is a unique, user-specific, and resettable ID for advertising provided by Google Play services, which exposes an API for accessing the advertising ID of the user as a string, in the universally unique identifier (UUID) format similar to 38400000-8cf0-11bd-b23e-10b96e40000d
.
- Branch log-level parameter:
user_data_aaid
- Branch 포스트백 매크로:
${(user_data.aaid)!}
Android OAID
The Open Anonymous Device Identifier (OAID) is used for advertising purposes in place of the non-supported Google Advertising ID for specific device manufacturers. The Branch SDK collects OAID and uses it for attribution on clicks and impressions.
- Branch log-level parameter:
user_data_oaid
- Branch 포스트백 매크로:
${(user_data.oaid)!}
레거시 및 기타 식별자
Branch는 어트리뷰션을 위해 무엇보다도 광고 식별자에 의존하지만 광고 식별자를 사용할 수 없는 경우도 있습니다. 여기에는 광고 식별자를 지원하지 않는 레거시 버전과 Google Android 앱 스토어가 아닌 다른 곳에서 다운로드하는 유저가 포함됩니다. 광고 식별자를 사용할 수 없는 경우 어트리뷰션을 위해 다음과 같은 디바이스 식별자를 사용합니다.
Android ID
The ANDROID ID for Android devices is a 64-bit number (as a hex string) that is randomly generated on the first boot of a device and typically remains constant for the lifetime of the device. This value is formatted as lower case.
- Branch log-level parameter:
user_data.android_id
- Branch 포스트백 매크로:
${(user_data.android_id)!}
Amazon 식별자
Fire ID
The Amazon Fire ID is a user-resettable, unique identifier that helps protect the privacy of the user. If you collect information about a user’s behavior to display interest-based ads, or to generate analytics, you must use the Advertising ID; no other identifier or tracking method may be used. Users can reset the Advertising ID or opt out of interest-based ads altogether.
- Branch log-level parameter:
user_data.aaid
- Branch 포스트백 매크로:
${(user_data.aaid)!}
Windows Phone 식별자
Windows AID
The Windows advertising identifier (AID) is a unique, user and device-specific, and resettable ID for advertising represented as an alphanumeric string formatted as upper case without colons (for example, AAAAAABBBBCCCC111122222222222
). When the advertising ID feature is disabled, this value is an empty string.
- Branch log-level parameter:
user_data_windows_aid
- Branch 포스트백 매크로:
${(user_data.windows_aid)!}
유저 식별자
User ID
앱 개발자(광고주)가 생성한 User ID는 시스템의 User ID와 동일합니다. user_id는 서드 파티 광고 파트너가 이 값에 액세스하거나 이를 복제할 수 없기 때문에(이전에 언급된 다른 Android 또는 iOS 식별자를 사용할 수 있음) 교차 프로모션 내부 캠페인에서만 작동합니다.
- Branch log-level parameter:
user_data_developer_identity
- Branch 포스트백 매크로:
${(user_data.developer_identity)!}
Updated 3 days ago