react-native-kakao-share-link
react-native-kakao-share-link copied to clipboard
웹으로 이동이 아예 안됩니다.
const response = await KakaoShareLink.sendCommerce({
content: {
title: 'title',
imageUrl:
'http://t1.daumcdn.net/friends/prod/editor/dc8b3d02-a15a-4afa-a88b-989cf2a50476.jpg',
link: {
webUrl: 'https://developers.kakao.com/',
mobileWebUrl: 'https://developers.kakao.com/',
},
description: 'description',
},
commerce: {
regularPrice: 100000,
discountPrice: 80000,
discountRate: 20,
},
buttons: [
{
title: '웹에서 보기',
link: {
webUrl: 'https://developers.kakao.com/',
mobileWebUrl: 'https://developers.kakao.com/',
},
},
],
});
이렇게 아예 앱부분이 없이 webUrl 만 넣어서 구현해도 앱으로만 routing 됩니다. 앱이 없는 경우는 아예 아무 동작도 없습니다...
제가 뭔가를 잘못 구현한건지는 모르겠지만 혹시 다른 분들은 잘 되시나요?