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.

okay so on my page in the meta data when viewing the source code it says

<html>
<head>
<title>YourGag - Gag</title>
<meta property="og:title" content="MyGag - Gag" />
<meta property="og:type" content="activity" />
<meta property="og:url" content="http://blaze-craft.com/matt/gag.php?id=2" />
<meta property="og:image" content="http://blaze-craft.com/matt/get.php?id=2" />
<meta property="og:site_name" content="YourGag" />
<meta property="fb:admins" content="1254694731" />

</head>

but when i use the facebook debugger it says this

Meta Tag:   <meta property="og:title" content="MyGag - Gag" />
Meta Tag:   <meta property="og:type" content="activity" />
Meta Tag:   <meta property="og:url" content="http://blaze-craft.com/matt/gag.php?id=0"     />
Meta Tag:   <meta property="og:image" content="http://blaze-craft.com/matt/get.php?  id=0" />
Meta Tag:   <meta property="og:site_name" content="YourGag" />
Meta Tag:   <meta property="fb:admins" content="1254694731" />

as you can see the id is different any ideas why this is happening?

thanks

:)

share|improve this question
` <meta property="og:image" content="blaze-craft.com/matt/get.php?id=2"; /> ` What's wrong? – CappY Feb 13 '12 at 20:47

1 Answer

Body Meta: You have <meta> tags ouside of your <head>. This is either because your <head> 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.

share|improve this answer
Did this answer help you to find your solution to your question, if so, please accept this answer. See meta.stackoverflow.com/questions/5234/… for how to mark answers accepted. Thank you! – DMCS Apr 17 '12 at 20:44

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.