트위터 오픈 그래프 미리보기 및 디버그
https://cards-dev.twitter.com/validator
페이스북 개체 디버거
https://developers.facebook.com/tools/debug/og/object/
메타 태그는 아래와 같이 넣음
{% block open_graph %} <meta property="twitter:card" content="summary"> <meta name="twitter:title" content="{{ post.title }}"> <meta property="og:site_name" content="{{ SITE_NAME }}"> {% if post.tags %} <meta property="og:description" content="{{ post.tags }}"> <meta name="twitter:description" content="{{ post.tags }}"> {% else %} <meta property="og:description" content="{{ SITE_INFO }}"> <meta name="twitter:description" content="{{ SITE_INFO }}"> {% endif %} <meta property="og:url" content="{{ request.build_absolute_uri }}"> <meta property="og:title" content="{{ post.title }}"> {% if post.image %} <meta property="og:image" content="{{ request.scheme }}://{{ request.get_host }}{{ post.image.url }}"> <meta property="twitter:image" content="{{ request.scheme }}://{{ request.get_host }}{{ post.image.url }}"> {% endif %} {% if FB_APP_ID %} <meta property="fb:app_id" content="{{ FB_APP_ID }}"> {% endif %} {% endblock %}
* 소스 출처: bbgo/blogs