문제 상황

카카오톡 알림톡을 통해 서비스 링크를 전달했을 때, 사용자들이 카카오톡의 인앱브라우저에서 링크를 여는 경우 다음과 같은 문제가 발생했습니다:

  1. 카카오톡 인앱브라우저의 웹뷰 기능 제한으로 서비스의 핵심 기능 사용이 어려웠습니다.
  2. 결제나 인증 관련 기능이 정상적으로 작동하지 않았습니다.

해결 방법

이 문제를 해결하기 위해 InAppBrowserRedirect 컴포넌트를 다음과 같이 구현했습니다:

'use client';

import { useEffect } from 'react';

export default function InAppBrowserRedirect({
  children,
}: {
  children: React.ReactNode;
}) {
  useEffect(() => {
    // 이미 리다이렉트 된 경우 체크
    if (sessionStorage.getItem('redirected')) return;

    const ua = window.navigator.userAgent.toLowerCase();
    const currentUrl = window.location.href;

    if (/(?:iphone|ipad|android).* kakaotalk/i.test(ua)) {
      sessionStorage.setItem('redirected', 'true');
      window.location.href = `kakaotalk://web/openExternal?url=${encodeURIComponent(currentUrl)}`;
    } else if (/(?:iphone|ipad|android).* line\\//i.test(ua)) {
      sessionStorage.setItem('redirected', 'true');
      window.location.href = `${currentUrl}${currentUrl.includes('?') ? '&' : '?'}openExternalBrowser=1`;
    } else if (
      /inapp|naver|snapchat|wirtschaftswoche|thunderbird|instagram|everytimeapp|whatsapp|electron|wadiz|aliapp|zumapp|kakaostory|band|twitter|daumapps|daumdevice\\/mobile|fb_iab|fb4a|fban|fbios|fbss|trill/i.test(
        ua,
      )
    ) {
      sessionStorage.setItem('redirected', 'true');

      if (/android/i.test(ua)) {
        window.location.href = currentUrl.replace(
          /^(https?):\\/\\/(.*)$/,
          'intent://$2#Intent;scheme=$1;package=com.android.chrome;end',
        );
      } else if (/i(?:phone|pad)/i.test(ua)) {
        window.location.href = `x-web-search://?${encodeURIComponent(currentUrl)}`;
      }
    }
  }, []);

  return <>{children}</>;
}
  1. 사용자(UA) 체크 로직 구현
  2. 브라우저별 맞춤 리다이렉션 처리

개선 효과

  1. 사용자 경험 개선
  2. 서비스 안정성 향상

참고소스

https://github.com/hyunbinseo/demo.hyunbin.page/blob/main/src/routes/(noindex)/1725515464613/+page.svelte