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 am implementing Opengraph tags into my site and must I use the namespaces provided by Facebook? I am a bit confused as I have seen a couple different things here is an example they give. Must I use this exactly?

xmlns:og="http://ogp.me/ns#"
xmlns:fb="http://www.facebook.com/2008/fbml">

Or I need to use only the first?

share|improve this question
Very related to this question, answered by FB stuff: stackoverflow.com/questions/8235687/… – lulalala Nov 7 '12 at 4:12

1 Answer

up vote 2 down vote accepted

You only need the Facebook namespace if you are going to use Facebook specific tags, like fb:admins, etc. Otherwise, you can use just the og namespace.

share|improve this answer
Thanks, is it a big deal to leave both in there even if I do not use both all the time? Does that make sense? – Lynda Nov 7 '11 at 18:50
It's not a big deal at all to leave both in. You're just letting the XML interpreter know that you may be using these namespaces. – Nick Q. Nov 7 '11 at 18:53
Thanks for the help and specifying! – Lynda Nov 7 '11 at 18:56

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.