안녕하세요. 사이트에 meta 태그를 적용하였는데, 페이스북 메신저 및 페이스북 글에서는 잘 반영이 됐지만 카카오톡에서는 적용이 안되는 것 같습니다.
현재 적용한 태그는 다음과 같습니다.
<Head>
<title>{`흑흑: ${title}`}</title>
<meta name='description' content={description} />
<meta itemProp='name' content={title} />
<meta itemProp='description' content={description} />
<meta itemProp='image' content={image} />
<meta property='og:type' content='website' />
<meta property='og:title' content={title} />
<meta property='og:description' content={description} />
<meta property='og:image' content={image} />
<meta property='og:url' content={`${BASE_URL}${shareKey}`} />
/* ${BASE_URL}${shareKey} => 실제 url */
<meta name='twitter:card' content={image} />
<meta name='twitter:title' content={title} />
<meta name='twitter:description' content={description} />
<meta name='twitter:image' content={image} />
</Head>
코드상의 title, description, image는 페이스북 메신저에서 확인한 바에 따르면 잘 적용되는 것 같습니다.
메신저별로 테스트결과는 다음과 같습니다.
- 페이스북 메신저
- 페이스북
- 카카오톡
- Slack
https://developers.kakao.com/tool/clear/og 이 링크에서 캐시 초기화를 여러번 진행해보았지만 결과는 같았습니다. 혹시 제가 놓친 설정이 있는지 궁금합니다.
테스트한 링크는
https://dev-share.archisketch.com/A92E683D142C496B 입니다.
감사합니다