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.

Possible Duplicate:
get wrong ogtype in object debugger

I have a website integrated with FB open graph. I have my objects and actions defined and now if I debug my page in the facebook debugger I get the warnings:

Inferred Property: The 'og:url' property should be explicitly provided, even if a value can be inferred from other tags.

Inferred Property: The 'og:title' property should be explicitly provided, even if a value can be inferred from other tags.

Inferred Property: The 'og:description' property should be explicitly provided, even if a value can be inferred from other tags.

Inferred Property: The 'og:image' property should be explicitly provided, even if a value can be inferred from other tags.

I have founds tons of post about this issue but I am still not getting how can I fix it. On that page I have following meta tags in the header:

<meta content='' name='fb:appid'>
<meta content="test" name='og:description'>
<meta content="test" name='og:title'>
<meta content='...' name='og:url'>
<meta content='...' name='og:image'>

Can someone please help?

share|improve this question

marked as duplicate by Juicy Scripter, Peter O., Mark, BNL, Graviton Oct 28 '12 at 6:45

This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.

1 Answer

Change the 'name' tags to 'property' like -

<meta content='...' property='og:description'/>
<meta content="..." property="og:title'/>

And it should work fine. Refer to - http://ogp.me/ for examples.

share|improve this answer

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