<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="https://developers.kakao.com/sdk/js/kakao.js"></script>
<script>
// SDK를 초기화 합니다. 사용할 앱의 JavaScript 키를 설정해 주세요.
Kakao.init('api키');
// SDK 초기화 여부를 판단합니다.
console.log(Kakao);
</script>
<title>Document</title>
</head>
<body>
<button onclick="shareMessage()">테수투</button>
<script type="text/javascript">
function shareMessage() {
Kakao.Share.sendDefault({
objectType: 'feed',
content: {
title: '테스트야',
description: '#케익 #딸기 #삼평동 #카페 #분위기 #소개팅',
imageUrl:
'https://i.pinimg.com/originals/d5/d2/3e/d5d23ed7f286b97fe8319bea6ee0c9d0.jpg',
link: {
mobileWebUrl: 'https://www.naver.com/',
webUrl: 'https://www.naver.com/',
},
},
social: {
likeCount: 999,
commentCount: 89,
sharedCount: 9,
},
buttons: [
{
title: '웹으로 보기?',
link: {
mobileWebUrl: 'https://www.naver.com/',
webUrl: 'https://www.naver.com/',
},
},
{
title: '앱으로 보기',
link: {
mobileWebUrl: 'https://www.naver.com/',
webUrl: 'https://www.naver.com/',
},
},
],
})
}
</script>
</body>
</html>
위처럼 카카오톡 공유하기 기능을 사용하려는데요,
카톡으로 공유까지는 잘되는데, 웹으로 보기 클릭시 연결 url을 naver 주소로 해주었는데요
클릭하면 localhost:3000으로 이동이 되는데 왜그런지 알수있을까요?