링크
https://pierrecardinkorea.com/product/list.html?cate_no=25&ec_soldout_display=F
자바스크립트
function setOgImageBasedOnURL() {
const vcurrentURL = window.location.href;
const ogurlElement = document.querySelector('meta[property="og:url"]');
const ogImageElement = document.querySelector('meta[property="og:image"]');
ogurlElement.setAttribute('content',vcurrentURL);
if (vcurrentURL.includes('cate_no=25')) {
ogImageElement.setAttribute('content', 'https://pierrecardinkorea.com/SkinImg/img/ogimage/pierre.jpg');
} else if (vcurrentURL.includes('cate_no=24')) {
ogImageElement.setAttribute('content', 'https://pierrecardinkorea.com/SkinImg/img/ogimage/pierre_w.jpg');
} else {
ogImageElement.setAttribute('content', 'https://pierrecardinkorea.com/SkinImg/img/ogimage/pierre_default.jpg');
}
}
window.addEventListener('DOMContentLoaded', setOgImageBasedOnURL);
해당 이미지들을 가져오지못하고 기본으로 적용된 대표 og image만 가져옵니다. 카톡 공유이미지 캐쉬삭제해도마찬가지네요
자바스크립트로 변경된 og image는 못가져오는걸까요?