카카오톡 공유하기 이미지 미노출 발생과 imageUrl 도메인 권한 관련 문의드립니다

문의 시, 디벨로퍼스 앱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
이렇게 넘어옵니다.

안녕하세요.

자세한 확인을 위해 구현하신 코드 공유 부탁드립니다.

@woody.ho 코드 추가하였습니다.

아래와 같이 전달되었습니다.
https:https://gi.esmplus.com/bestsmart/th_normal/oa_tuna/tuna_meat_85g_12ea.jpg

https로 시작하는지 확인 후 스킴을 붙이면 좋을것 같습니다.

@woody.ho 해결되었습니다. 친절한 답변 감사합니다.