Skip to content

Instantly share code, notes, and snippets.

@bootjp
Last active August 29, 2015 14:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bootjp/3cdc13686572deec67b1 to your computer and use it in GitHub Desktop.
Save bootjp/3cdc13686572deec67b1 to your computer and use it in GitHub Desktop.
OGPとTwitterCardとGoogleとかその辺のまとめ
<!--OGP-->
<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# article: http://ogp.me/ns/article#">
<meta property="og:type" content="article" />
<meta property="og:title" content="タイトル" />
<meta property="og:description" content="要約" />
<meta property="og:image" content="http://example.com/foo.png" />
<meta property="og:site_name" content="タイトル" />
<meta property="og:url" content="http://example.com/hogehoge/" />
<!--Twitter Card-->
<meta property="twitter:card" content="summary" />
<meta property="twitter:site" content="@YouTwitterAccount" />
<meta property="twitter:title" content="ページタイトル" />
<meta property="twitter:description" content="要約" />
<meta property="twitter:image" content="http://example.com/foo.png" />
<meta name="twitter:domain" content="example.com" />
<meta name="twitter:creator" content="@YouTwitterAccount" />
<!--Facebook-->
<meta property=”fb:app_id” content=”Facebook_appID” />
<!--Google Pluspage-->
<link rel="author" href="GooglPlusPageID" />
<!--Google Search-->
<meta name="author" content="作者名" />
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment