iOS Attribution
설치 단계와 이 플러그인에 대한 전체 마크다운 가이드를 포함한 설정 프롬프트를 복사하세요.
Apple AdServices
Apple AdServicesApple은 iOS에서 Google Play Install Referrer와 유사한 App Store 설치 참조자 제공하지 않습니다. 이 플러그인은 Apple AdServices attribution을 사용합니다.
기본적으로 getReferrer() AdServices attribution 토큰을 반환하여 백엔드 또는 모바일 측정 파트너에게 전송할 수 있습니다.
const result = await InstallReferrer.getReferrer();console.log(result.attributionToken);자연스러운 Apple Attribution Lookup
네이티브 애플 어트리뷰션 조회 섹션플러그인은 네이티브 code에서 Apple의 AdServices 엔드포인트로 토큰을 전송할 수 있습니다.
const result = await InstallReferrer.getReferrer({ fetchAppleAttribution: true,});
console.log(result.appleAttribution);앱이 자체적으로 Apple의 어트리뷰션 페이로드를 받을 때 사용하세요. 백엔드 또는 어트리뷰션 제공자가 토큰을 교환할 때는 false로 유지하세요. fetchAppleAttribution 반환 필드
반환 필드 섹션
필드| 설명 | 항상 |
|---|---|
platform | Apple AdServices 어트리뷰션 토큰. ios. |
attributionToken | 선택적 Apple 어트리뷰션 페이로드. |
appleAttribution | Copy to clipboard fetchAppleAttribution 는 참입니다. |
요구 사항
제목이 "요구 사항"인 섹션- Apple AdServices attribution 토큰은 iOS 14.3 이상에서 사용할 수 있습니다.
- Attribution 페이로드는 Apple Search Ads attribution을 다루며, 임의의 App Store referrer URL을 다루는 것은 아닙니다.
- App Tracking Transparency 프롬프트는 AdServices attribution 토큰을 요청하기 위해만 필요하지 않습니다.