컨텐츠로 건너뛰기

iOS Attribution

Apple AdServices

Apple AdServices

Apple은 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 반환 필드

반환 필드 섹션

필드
설명항상
platformApple AdServices 어트리뷰션 토큰. ios.
attributionToken선택적 Apple 어트리뷰션 페이로드.
appleAttributionCopy to clipboard fetchAppleAttribution 는 참입니다.
  • Apple AdServices attribution 토큰은 iOS 14.3 이상에서 사용할 수 있습니다.
  • Attribution 페이로드는 Apple Search Ads attribution을 다루며, 임의의 App Store referrer URL을 다루는 것은 아닙니다.
  • App Tracking Transparency 프롬프트는 AdServices attribution 토큰을 요청하기 위해만 필요하지 않습니다.