안녕하세요?
제로보드 XE를 사용중입니다.
아래의 소스로 모바일 웹에서 카카오 링크 적용하고자 합니다.
문제는,
이미지가 있는 게시글을 공유할 때는 잘 동작됩니다.
이미지가 없는 게시글(텍스만 있는)을 공유할 때는 카카오 링크버튼을 클릭해도
넘어가지 않습니다.
무엇이 문제인지요?
------------ 스크립트 -----------
<script>
Kakao.Link.createTalkLinkButton({
container: '#kakao-link-btn',
label: '{$oDocument->getTitle()}',
<!--@if($oDocument->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type))-->
image: {
src: '{$oDocument->getThumbnail($module_info->thumbnail_width, $module_info->thumbnail_height, $module_info->thumbnail_type)}',
width: '{$module_info->thumbnail_width}', // 썸네일 최소크기는 세로 80px, 가로 80px
height: '{$module_info->thumbnail_height}'
},
<!--@else-->
image: {
src: 'http://sjsomang.or.kr/images/main_logo.png', // 게시물에 이미지가 없을 경우 불러옵니다.
width: '161',
height: '44' // 기본 이미지의 크기를 기재합니다.
},
<!--@endif-->
webButton: {
text: '소망교회', // 사이트에 맞게 적절히 수정
url: '{getUrl($oDocument->document_srl)}' // 앱 설정의 웹 플랫폼에 등록한 도메인의 URL이어야 합니다.
}
});
</script>
답변을 기다립니다.!
감사합니다.