필터

참조 링크 데이터를 보존하거나 폐기하는 방법이 있습니까?

By default, when users arrive on a page running Journeys via a Branch link and make_new_link is not set to true, then any interaction with the Journey (click/install/re-open) will be attributed to the referring Branch link, rather than to the Journey. If make_new_link is set to true, the same events will be attributed to the Journey, instead.

이는 유저가 링크에서 직접 설치하지 않는 경우에도 리퍼링(Referring) 링크가 앱 성장/인게이지먼트에 기여하는 방법에 대한 데이터 수집에 도움이 될 수 있습니다. 예를 들어, 유저가 Facebook에서 Branch 링크를 클릭하고, 웹사이트에 도착하고, Journey에서 설치한 경우, Facebook에 있는 링크에 대한 설치를 어트리뷰션할 수 있습니다. 또한 원 링크가 앱에 딥링크(Deep Link) 하도록 설정한 경우, 해당 딥링크(Deep Link)도 보존됩니다.

Branch will pass the referring link into Journeys by default. In order to discard referring link data, include the make_new_link flag, with a value of true, into the options during initialization:

branch.init( 'BRANCH_KEY',
    {
        'make_new_link' : true
    }
);