웹에서 앱스토어로 이동시키기

broccoli·2022년 9월 18일
0

javascript

목록 보기
5/7
  • window.location.href = url

android: https://play.google.com/store/apps/details?id=앱ID
ios: https://itunes.apple.com/kr/app/apple-store/앱ID

  • 앱ID 확인방법

    • 안드로이드 앱을 확인하는 방법은:
      웹에서 구글 플레이 접속후 해당 앱을 찾으면 해당 앱name을 알 수 있다.

    • ios 앱ID를 확인하는 방법

ex) 홈쇼핑모아 앱의 경우

  if (isAndroid()) {
    url =
      'https://play.google.com/store/apps/details?id=com.buzzni.android.subapp.shoppingmoa';
  }
  if (isIOS()) {
    url = 'https://itunes.apple.com/kr/app/apple-store/id616581116';
  }
profile
🌃브로콜리한 개발자🌟

0개의 댓글