Last active
August 29, 2015 14:06
-
-
Save bootjp/3cdc13686572deec67b1 to your computer and use it in GitHub Desktop.
OGPとTwitterCardとGoogleとかその辺のまとめ
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!--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