필터

다른 앱에서 제 앱으로 딥링크 (Deep Link)할 수 있습니까?

예, 다른 앱에서 내 앱으로 링크할 수 있으며 내 앱에서만 Branch SDK를 연동해야 합니다.

링크를 임베드하는 세 가지 방법이 있습니다.

  1. Embed Quick Link from the target app’s dashboard.

  2. Use the Deep Linking API to create a link with the target app’s API key, making sure to send your API request early enough to account for response time.

  3. Programmatically build the link as a String, starting with target app’s domain (i.e. https://example.app.link), and append deep link keys as encoded query parameters.

그런 다음 아래와 같은 방식으로 인앱 클릭을 실행합니다.

iOS의 경우

Call UIApplication.shared.open() on the link

안드로이드의 경우

Intent에 링크 삽입:

Intent intent = new Intent(Intent.ACTION_VIEW); intent.setData(Uri.parse(yourUrl));
startActivity(intent);