any advice about that?
Bad value og:image for attribute name on element meta: Keyword og:image is not registered.
any advice about that?
Bad value og:image for attribute name on element meta: Keyword og:image is not registered.
It looks like you need to define the XML namespace og.
I would guess you need to change your <html> tag to read
<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml">
so that the og prefix is declared. As albert pointed out, you would either need to declare your document as XHTML as described at #8338499: HTML5 validator failing on Facebook OpenGraph XML namespace or you could write them conditionally to the page, so that only the Facebook crawler sees them, as in thejudge's answer to #6501189: OpenGraph validation for HTML5.