Skip to content

Instantly share code, notes, and snippets.

@hongggyelim
Created April 25, 2025 01:53
Show Gist options
  • Save hongggyelim/934a94c8c61f3e893347f8be12f259cd to your computer and use it in GitHub Desktop.
Save hongggyelim/934a94c8c61f3e893347f8be12f259cd to your computer and use it in GitHub Desktop.
카카오톡 인앱 브라우저 - 파일 다운로드 제한 대응
useEffect(() => {
const userAgent = navigator.userAgent.toLowerCase();
const isKakaoInApp = userAgent.includes("kakaotalk");
// 카카오톡 인앱 브라우저일 경우에만 실행
if (isKakaoInApp) {
const targetUrl = "https://life-graph.vercel.app/";
window.location.replace(
`kakaotalk://web/openExternal?url=${encodeURIComponent(targetUrl)}`
);
}
}, []);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment