문의 시, 디벨로퍼스 앱ID를 알려주세요.
- 친구 api와 피커, 메시지 api 사용을 위한 체크 리스트 ( https://devtalk.kakao.com/t/api-api/116052 ) 먼저 확인해주세요.
- 메시지 API 권한 신청은 “디벨로퍼스>내 애플리케이션>앱 설정>앱 권한” 메뉴에서 신청 할 수 있습니다.
앱ID: 423631
카카오톡 공유하기시 이미지가 노출되지 않는 문제가 있어 질문 드립니다.
사이트 도메인에 도메인은 등록이 되어 있는 상태입니다.
https://esmplus.com
https://gi.esmplus.com
문제는
https://esmplus.com → ERR_CONNECTION_TIMED_OUT
https://gi.esmplus.com → 403 Forbidden
https://gi.esmplus.com/bestsmart/th_normal/oa_tuna/tuna_meat_85g_12ea.jpg → 이미지 잘 나옴
다른 글을 보다보니 등록된 도메인으로 접근허용여부를 판단하는 것 같은데
위와 같은 경우에는 어떻게 이미지를 노출할 수 있는지… 방법이 있는지 궁금합니다.
혹시 불가능한가요?
function sendLink() {
var newURL = window.location.protocol + "//" + window.location.host + window.location.pathname;
var sharetitle = jQuery(".xans-product-detail .prdDesc .name").text();
var summary = jQuery(".xans-product-detail .prdDesc .detail_summary").text();
var shareimg = jQuery(".xans-product-detail .overview .swiper-slide:first-child img").attr('src');
Kakao.Link.sendDefault({
objectType: 'feed',
content: {
title: sharetitle,
description: summary,
imageUrl: 'https:' + shareimg,
link: {
mobileWebUrl: newURL,
webUrl: newURL
}
},
buttons: [
{
title: '웹으로 보기',
link: {
mobileWebUrl: newURL,
webUrl: newURL
}
},
]
});
}
코드는 이렇게 되어 있고 shareimg = ‘//gi.esmplus.com/bestsmart/th_normal/oa_tuna/tuna_meat_85g_12ea.jpg’
이렇게 넘어옵니다.