html - Putting OGP tags, it occurs 'The 'og:type' property is required, but not present.' -
i'm putting ogp tags on website below. http://en.come-to.tokyo/
every time check on facebook debugger here, same error come up. "the 'og:type' property required, not present."
though og:type there, how can it? in advance.
you need fix html errors, following lines include semicolon should not there:
<meta property="og:url" content="http://en.come-to.tokyo"; /> <meta property="og:image" content="http://en.come-to.tokyo/images/logo-movie-bg.png"; />
correct:
<meta property="og:url" content="http://en.come-to.tokyo" /> <meta property="og:image" content="http://en.come-to.tokyo/images/logo-movie-bg.png" />
you should consider using larger image og:image
, check out docs specifications: https://developers.facebook.com/docs/sharing/best-practices#images
Comments
Post a Comment