<script>
function kakaoShare(thumbNail) {
Kakao.Share.sendDefault({
objectType: "feed",
content: {
title: "푸드올로지 5%할인쿠폰",
description: "",
imageUrl: thumbNail,
link: {
mobileWebUrl: "https://www.food-ology.kr/",
webUrl: "https://www.food-ology.kr/",
},
},
buttons: [
{
title: "5%쿠폰받기",
link: {
mobileWebUrl: "https://95problem.com/main/html.php?htmid=event/dist_coupon_friend.html",
webUrl: "https://95problem.com/main/html.php?htmid=event/dist_coupon_friend.html",
},
}
],
});
}
</script>
위 와같이 버튼클릭시 https://95problem.com/main/html.php?htmid=event/dist_coupon_friend.html
주소로 이동시키게끔 설정을 했는데 카톡상에서 버튼을 클릭하면 해당페이지로 가는게 아닌
https://95problem.com/ 으로 이동이 되는데 왜그런지 알수있을까요?
혹시 뒤에 html로 끝나는 주소는 버튼클릭으로 이동이 안되는건가요?