OGP:Open Graph Protocolの略
設定しておくとURLを共有したときに設定した画像、タイトルなどが表示される
#OGPの設定
###必須項目
og:title ページタイトル
og:type ページ種類(website、blog、video、article など)
og:image サムネイル画像
og:url webページのURL
###任意項目
og:description webページの説明文
og:site_name サイト名
og:email 連絡先
og:phone_number 連絡先
og:locale サポートしている言語(日本語のみの場合は"ja_JP")
※複数言語をサポートしている場合は"og:locale:alternate"で複数記載
html
<head>
<meta property="og:locale" content="ja_JP">
<meta property="og:type" content="website">
<meta property="og:description" content="サイト説明文">
<meta property="og:title" content="ページタイトル">
<meta property="og:url" content="サイトURL">
<meta property="og:image" content="http://~サイト画像">
<meta property="og:site_title" content="サイト名">
</head>
正しく設定されているかはここで確認できる。