Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

The page I'm working on generates the following Open Graph tags. Using Facebook debugger I got the following errors (note that I changed the real values here) :

Extraneous Property: Objects of this type do not allow properties named 'og:video:release_date'. Extraneous Property: Objects of this type do not allow properties named 'og:video:director'. Extraneous Property: Objects of this type do not allow properties named 'og:video:actor'. Extraneous Property: Objects of this type do not allow properties named '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" />

I don't understand why the video properties are not allowed, I guess eveything is echoed properly, using the correct date format and so on.

Also, is there a maximum image size Facebook can handle? It looks that some of images doesn't render in the debugger though the url of the JPG is there, and I can only assume that they are too large: 2500x4000px?

Thanks.

share|improve this question
What are the settings in the app facebook page? are you sure the action is set correctly? – Itay k Jul 17 '12 at 8:27

1 Answer

movie' object, have you added extra attributes? Maybe try remove these attributes?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.