Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Facebook debugger : Response 206

url: http://www.pagepilot.co.uk/pp_cftest/

When posted into facebook debugger: https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.pagepilot.co.uk%2Fpp_cftest%2F

Keeps returning a 206 Partial Response Instead of a 200 OK

The code being returned is:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"     "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://ogp.me/ns#" xmlns:fb="https://www.facebook.com/2008/fbml"> <head> <title>pp_cftest</title> <meta property="og:title"       content="pp_cftest" /> <meta property="og:type"        content="company" /> <meta property="og:url"         content="http://www.pagepilot.co.uk/pp_cftest/" /> <meta property="og:site_name"   content="PagePilot" /> <meta property="og:description" content="description text" /> <meta property="fb:app_id"      content="242396009188876" /> <meta property="og:image"       content="http://www.pagepilot.co.uk/views/pp_w_en/assets/images/ladbrokes.gif" /> </head> <body> <p>test content</p> </body> </html> 

There doesn't seem to be anything unusual or missing in the code. Just don't understand it.

like image 684
Chris Finnigan Avatar asked Mar 21 '12 15:03

Chris Finnigan


People also ask

What is the response code 200 for Facebook Debugger?

Response code 200 means that Facebook was able to scrape your page.

What is a Facebook sharing Debugger?

Sharing Debugger lets you preview how your content will look when it's shared to Facebook and debug any issues with your Open Graph tags. Log into Facebook to use this tool.

How do I debug Facebook tool?

To do this go to the Facebook debugger page and then enter the URL of your page into the tool. Click on 'Debug' and you will see a summary of how your page is displayed along with a link preview. If this is correct then you're good to go as this is what will be displayed when a link to your page is shared on Facebook.


1 Answers

The debugger only requests the first 40KB of your page - so the 206 is expected (well, it's expected if only part of the document was returned but i guess some servers return it for any request with a Range: header)

It shouldn't affect your ability to have the tags read correctly and the metadata populated when sharing a link on Facebook

like image 142
Igy Avatar answered Sep 21 '22 08:09

Igy