[JS] 웹 모바일에서 App 실행
Web Mobile 에서 APP 을 실행 할수 있다! 이를 앱링크 or 딥링크 라고 한다. 아래 예제는 메타마스크 로그인에 관한 예제다. const LoginWallet = async () => { try { await ethereum.enable(); } catch (e) { let pcDevice = "win16|win32|win64|mac|macintel"; if (navigator.platform) { // 모바일 환경일 경우 if (pcDevice.indexOf(navigator.platform.toLowerCase()) < 0) { exeDeepLink(); checkInstallApp(); } else { window.open(`${process.env.REACT_APP_INSTALL_MET..
2021.11.01