필터

광고 네트워크 데이터 필터링

📘

베타 테스트 중인 기능

To gain access to this feature, please contact Support to be whitelisted.

대상

Branch는 고객의 개인 정보를 매우 중요하게 생각합니다. 고객이 Branch의 다른 광고 파트너로 보내는 이벤트 데이터 흐름을 필요에 따라 맞춤화할 수 있도록 Branch의 광고 파트너에게 내보내는 이벤트 데이터의 범위를 제한할 수 있는 애드네트워크 데이터 필터링 기능을 제공합니다. 이렇게 하면 특정 애드네트워크로 내보내지 않도록 이벤트 데이터의 일부를 필터링하거나 특정 광고 파트너가 이벤트 데이터의 특정 엔드 유저 일부를 처리해서는 안 된다고 판단하는 경우, 다른 유저들에 대해서는 해당 광고 파트너와 Branch의 연동을 계속 사용할 수 있습니다.

Why?

Branch has a broad set of integrated partners that help our links work seamlessly across channels and platforms. Our strong partner relationships make deployment and speed-to-market easy to achieve. Use our network of partners to harness the power of Branch in the way that best fits your business objectives. You can learn more about the types of ad partnerships Branch has integrations with here: https://branch.io/partners/. We understand that some customers would like to filter the scope of end user event data sent to ad partners to ensure that events for certain end users are not exported. For this reason, we make available to our customers the Ad Network Data Filtering feature.

작동 방식

Branch SDK에서 이벤트 플래그 설정

Branch 대시보드를 통해 애드네트워크에 데이터 필터를 적용하려면 먼저 유저별로 이벤트 플래그를 설정해야 합니다.

유저에 대해 플래그가 true로 설정되면 Branch는 해당 유저가 잠재적으로 필터링 될 수 있도록 모든 이벤트에 플래그를 설정합니다. 기본적으로 Branch는 이 플래그를 false/no로 설정합니다.

유저의 상태를 변경하려면 고객이 유저에 대한 해당 값을 false로 변경해야 합니다.

Branch.getInstance().disableAdNetworkCallouts(true);
let branch = Branch.getInstance()
branch.disableAdNetworkCallouts(true)
Branch *branch = [Branch getInstance];
[branch disableAdNetworkCallouts:YES];

필터링할 애드 네트워크 선택

🚧

셀프 어트리뷰팅 네트워크(SAN)만 해당

At this time, only data filtering can only be applied to Self Attributing Networks. You can view a list of these partners here.

SAN 애드 네트워크로 전송되는 데이터를 필터링하려면:

  1. In the left-hand navigation, under Channels & Links, click Ads and then Partner Management.
  2. Branch가 보내는 데이터를 필터링할 SAN을 검색하고 선택합니다.
  3. Click on the Events Config tab and scroll down to the Restrict ad network data sharing toggle.
  4. Click the toggle to turn it on and click Save.
1794