私が取り組んでいるページは、次の Open Graph タグを生成します。Facebook デバッガーを使用すると、次のエラーが発生しました (ここで実際の値を変更したことに注意してください)。
余分なプロパティ: このタイプのオブジェクトは、「og:video:release_date」という名前のプロパティを許可しません。余分なプロパティ: このタイプのオブジェクトは、「og:video:director」という名前のプロパティを許可しません。余分なプロパティ: このタイプのオブジェクトは、「og:video:actor」という名前のプロパティを許可しません。余分なプロパティ: このタイプのオブジェクトは、「fb:page_id」という名前のプロパティを許可しません。
<meta property="og:title" content="Title of the movie" />
<meta property="og:type" content="video.movie" />
<meta property="og:video:release_date" content="2012-03-03" />
<meta property="og:video:director" content="Emmanuel Mouret" />
<meta property="og:video:actor" content="Emmanuel Mouret, Julie Depardieu, Francois Cluzet, Pascale Arbillot" />
<meta property="og:image" content="http://somesite.com/images/image.jpg" />
<meta property="og:url" content="http://somesite.com/premieres/movie-title" />
<meta property="og:video:url" content="http://somesite.com/videos/trailers/movie-title.mp4" />
<meta property="og:description" content="lorem ipsum [...]" />
<meta property="og:locale" content="en_EN" />
<meta property="og:site_name" content="Some Site" />
<meta property="fb:page_id" content="23342324452342" />
<meta property="fb:admins" content="232323232" />
ビデオのプロパティが許可されていない理由がわかりません。正しい日付形式などを使用して、すべてが適切にエコーされていると思います。
また、Facebookが処理できる最大画像サイズはありますか? JPG の URL が表示されているにもかかわらず、一部の画像がデバッガーでレンダリングされないように見えます。
ありがとう。