Skip to content

Commit

Permalink
kakao 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Kimminju0831 committed Nov 12, 2023
1 parent 1ed30fa commit 013e055
Showing 1 changed file with 14 additions and 13 deletions.
27 changes: 14 additions & 13 deletions src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -318,19 +318,6 @@ <h1>Vanilla JavaScript App</h1>
console.log(responseData);
document.querySelector('#script').textContent = responseData;

Kakao.init('391acf89e1f687dc86a1818add37f25a'); // 초기화

function sendLink() { // 카카오톡 공유하기
Kakao.Link.sendDefault({
objectType: 'text',
text: '안녕하세요, 원콜 서비스를 이용하려 합니다. 물금역에서 대전역으로 12월 11일 오후 12시 23분에 출발하는 기차 승차권 3매를 예매하고 싶어요. 제 이름은 홍길동입니다.',
link: {
mobileWebUrl: 'https://developers.kakao.com/docs/js/kakaotalklink#텍스트-템플릿-보내기',
webUrl: 'https://developers.kakao.com/docs/js/kakaotalklink#텍스트-템플릿-보내기',
},
})
}

} catch (error) {
// 오류 처리
console.error('Error submitting form:', error);
Expand All @@ -341,6 +328,20 @@ <h1>Vanilla JavaScript App</h1>
// submitRowAsync('departureValue', 'arrivalValue', 'dateValue', 'timeValue');

</script>
<script type="text/javascript">
Kakao.init('391acf89e1f687dc86a1818add37f25a'); // 초기화

function sendLink() { // 카카오톡 공유하기
Kakao.Link.sendDefault({
objectType: 'text',
text: '안녕하세요, 원콜 서비스를 이용하려 합니다. 물금역에서 대전역으로 12월 11일 오후 12시 23분에 출발하는 기차 승차권 3매를 예매하고 싶어요. 제 이름은 홍길동입니다.',
link: {
mobileWebUrl: 'https://developers.kakao.com/docs/js/kakaotalklink#텍스트-템플릿-보내기',
webUrl: 'https://developers.kakao.com/docs/js/kakaotalklink#텍스트-템플릿-보내기',
},
})
}
</script>

<div>
<a href="javascript:sendLink();"><img
Expand Down

0 comments on commit 013e055

Please sign in to comment.