vote up 0 vote down star

I'm trying to get my Facebook Connect code to validate, but it won't. I think the problem is that their xmlns page isn't loading. I have the code:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:fb="http://www.facebook.com/2008/fbml" xml:lang="en" lang="en">

But http://www.facebook.com/2008/fbml isn't found. Does anyone have a copy of what it should be? Is there a different URL i should use?

flag

3 Answers

vote up 1 vote down

The XML namespace doesn't need to actually exist, they are just a way to qualify elements and attributes. If you're interested (this is unrelated to your issue), there is more about XML namespaces here

Facebook seems to have a pretty straightforward page setup here: FB Connect, and it's laid out step by step. Have you checked this out?

link|flag
vote up 1 vote down

As already mentioned, the namespace URL is a red-herring. It's the DTD (as specified in the DOCTYPE) that is validated against.

If you really want to validate your pages that use XFBML, you will need to validate against a custom DTD. And, as far as I'm aware, Facebook don't publish a DTD for XFBML themselves, so you'll have to write one yourself (probably only for the elements/attributes that you're actually using).

It's not actually as tricky as it sounds; here's an A List Apart article on how to validate against a custom DTD.

Note also that messing around with your DOCTYPE declaration may do funny things with regards to knocking (older) browsers into quirks mode.

So you can get it to validate; it's just up to you whether it's worth the hassle.

link|flag
vote up 0 vote down

Facebook XHTML does not validate.

link|flag

Your Answer

Get an OpenID
or
never shown

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