쇼핑몰의 상품상세 페이지를 공유하기 위해 앱키 (Javascript 키)를 사용해서 카카오톡으로 메시지를 전송하는 기능을 사용중입니다.
카카오톡으로 공유된 메시지의 일부분은 메인페이지로 이동되는 이유를 알고 싶습니다.
카카오특으로 웹페이지의 상품 상세페이지 정보를 공유하면 (commerce 기준) 이미지, 타이틀, 버튼은 상품상세페이지로 이동됩니다.
하지만 가격과 빈공간을 누르면 메인페이지로 이동됩니다.
CommerceObject 와 빈공간을 이미지와 버튼의 동일 페이지로 이동 가능한지 알고 싶습니다.
const currentPage = document.location.href;
// eslint-disable-next-line no-debugger
debugger;
window.Kakao.Link.sendDefault({
installTalk: true,
objectType: 'commerce',
content: {
title: this.productDetail.baseline.productName,
imageUrl: this.productDetail.detail.productImageList[0],
link: {
mobileWebUrl: currentPage,
webUrl: currentPage,
},
},
commerce: {
productName: this.productDetail.baseline.productName,
regularPrice: this.productDetail.baseline.salePrice,
discountRate: this.productDetail.baseline.discountRate,
},
buttons: [
{
title: '자세히보기',
link: {
mobileWebUrl: currentPage,
webUrl: currentPage,
},
},
],
});