shpongle2634 / react-native-kakao-links

React-Native Kakao Link Module
MIT License
28 stars 21 forks source link

FeedTemplate을 이용한 원링크 공유 시에 발생하는 이슈 #33

Open devsince2021 opened 2 years ago

devsince2021 commented 2 years ago

안녕하세요 저희 서비스에서 feedTemplate을 이용해서 원링크를 공유하던 중 확인된 이슈입니다.

카톡에 공유된 메세지를 클릭할 때, 메세지의 상단 부분을 클릭할 경우 원하는 페이지로 랜딩이 정상적으로 작동하는데, 메세지 제일 하단의 앱이름이 표시 되는 부분을 클릭하면, 홈으로 랜딩이 진행되고 있습니다.

메세지의 하단 부분 역시 메세지의 다른 부분과 동일하게 링크가 작동하게 하는 것이 가능 할까요? 아래의 참고 이미지와 코드를 첨부하였습니다.

  1. 썸네일 클릭 - 링크 정상 작동
  2. 앱에서 보기 클릭 - 링크 정상 작동
  3. 앱 아이콘이 있는 footer 클릭 - 앱 홈으로 이동

좋은 라이브러리 제공해주셔서 감사히 이용하고 있습니다! 감사합니다.

https://scontent.xx.fbcdn.net/v/t1.15752-9/246369960_608711520555569_725005761284630244_n.png?_nc_cat=110&ccb=1-5&_nc_sid=aee45a&_nc_ohc=gtUPY_Rzi1EAX90iIQV&_nc_ad=z-m&_nc_cid=0&_nc_ht=scontent.xx&oh=982c0c9d35417c1b179de0b3b0a3f730&oe=6191F614

const options = {
      objectType: 'feed',
      content: {
        title,
        link: {
          androidExecutionParams: androidParams,
          iosExecutionParams: iosParams,
        },
        imageURL: imageUri,
        imageHeight,
        imageWidth,
        desc,
      },
      buttons: [
        {
          title: i18n.t(buttonText),
          link: {
            androidExecutionParams: androidParams,
            iosExecutionParams: iosParams,
          },
        },
      ],
    };