Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What does it mean Inferred Property in facebook opengraph [duplicate]

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?

like image 966
Filip Majernik Avatar asked Oct 24 '12 08:10

Filip Majernik


People also ask

What does inferred property mean?

Inferred Property – Inferred Property errors mean that you either have multiple image properties set for your post, or Facebook couldn't locate the image set. If you have multiple image properties, Facebook will guess which one you want out of the set.

What does the OG image property should be explicitly provided mean?

What Is 'og: Image' Property Should Be Explicitly Provided Error? If you have shared a URL on Facebook then Facebook will memorize all the information that is associated with that particular URL. It doesn't matter even if the URL is blank or you have specified the wrong URL.

What is OG image Secure_url?

The og:image property has some optional structured properties: og:image:url - Identical to og:image . og:image:secure_url - An alternate url to use if the webpage requires HTTPS.


1 Answers

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.

like image 57
deesarus Avatar answered Nov 10 '22 01:11

deesarus