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.

I'm having a weird experience with fb sharing. Whenever me or anyone share's my blog post, in the description area my ad codes are visible. This is hammering my adsense. I tried using facebook debugging tool and I got the following issues but I am unable to resolve it. Any help would be highly appreciable.


Errors That Must Be Fixed: Body Meta: You have tags ouside of your . This is either because your was malformed and they fell lower in the parse tree, or you accidentally put your Open Graph tags in the wrong place. Either way you need to fix it before the tags are usable.



**Warnings That Should Be Fixed: 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:image property should be explicitly provided, even if a value can be inferred from other tags. Inferred Property: The og:locale property should be explicitly provided, even if a value can be inferred from other tags.


share|improve this question

1 Answer

up vote 0 down vote accepted

It sounds like the meta tags are in the wrong place but because you haven't given us a link to your site it's hard to be sure; they should be in the section of the page. This would be causing the first error.

The second error refers to missing tags, but they might be 'missing' by virtue of not being in the correct place, so fix the first problem first

{edited after seeing your page}

The main error at the top is because you've a <meta name="alexaVerifyID" content="{snipped}" /> tag outside the <head></head> section of your page.

The rest of the errors are because you haven't added any open graph tags at all - each page should have meta tags telling Facebook what title/description/image to use when sharing, as well as which app/user should be allowed to see the analytics and insights information for the shared links

For more information on how this works, see https://developers.facebook.com/docs/opengraph/

If you want to just get up and running quickly, try the tool at Step 2 of the Like Button Documentation to generate some sample tags

share|improve this answer
I am not getting how to fix it. My blog is techhogger.com. Please let me know where I should do what. – Kunal Sharma Oct 27 '11 at 12:52
Thanks Igy, But fb share was working fine with similar snippeds but how come suddenly it cause the error? – Kunal Sharma Oct 27 '11 at 13:13
Maybe the validation has become stricter recently - if you have no tags at all Facebook will try to determine the name/description/etc from the page content, but maybe it's simply not trying any more because of the invalid meta tags outside the <head></head> section – Igy Oct 27 '11 at 13:14
I removed the alexa tags even though the problem is same. What should I do now? – Kunal Sharma Oct 27 '11 at 13:20
Everything done. Removed meta tags. FB linker also does not show error now even though its not done. Still description comes as my ad codes. Kindly help – Kunal Sharma Oct 27 '11 at 15:05
show 5 more comments

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.