Created
April 25, 2025 01:53
-
-
Save hongggyelim/934a94c8c61f3e893347f8be12f259cd to your computer and use it in GitHub Desktop.
카카오톡 인앱 브라우저 - 파일 다운로드 제한 대응
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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