2013-03-18 87 views
0

我使用的Facebook評論插件。當我在我的html頁面上寫下面的元標記。我使用Codeigniter框架工作爲我的應用程序。這應該是固定的Facebook刮信息 - 響應代碼206錯誤

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. 
Small og:image: All the images referenced by og:image should be at least 200px in both dimensions, with 1500x1500 preferred. (Maximum image size is 5MB.) Please check all the images with tag og:image in the given url and ensure that it meets the recommended specification. 

<html lang="en" xmlns="http://www.w3.org/1999/xhtml" 
      xmlns:og="http://ogp.me/ns#" 
      xmlns:fb="http://www.facebook.com/2008/fbml"> 

    <head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object#"> 

     <meta property="fb:admins" content="{MY_FB_ID}"/> 
     <meta property="fb:app_id" content="{MY_APP_ID}" /> 
     <meta property="og:type" content="website" /> 
     <meta property="og:url" content="{my url}" /> 
     <meta property="og:title" content="beyondandameter" /> 
     <meta property="og:image" content="http://mysitedomainname/Andameter/uploads/tech1.jpg" /> 

刮信息

Response Code: 206 
Fetched URL: http://mysitedomain/Andameter/anda/politics_pics/26 
Canonical URL: http://mysitedomain/Andameter/anda/politics_pics/26 

的Open Graph警告有沒有人幫我嗎?我的錯誤在哪裏?

+0

的206是不是一個錯誤,它僅僅意味着Facebook只請求服務器的前x個字節,並根據該部分內容進行響應。但是,在查看提及的URL時,您的文檔不包含您提到的元標記。 – CBroe 2013-03-18 12:28:59

+0

我不清楚,告訴我更多細節,以及我將在哪裏更改我的代碼。 – 2013-03-18 12:56:25

回答

0

我會刪除

<head prefix="og: http://ogp.me/ns# fb: http://ogp.me/ns/fb# object: http://ogp.me/ns/object#"> 

開始在 206概率住宿,但其他錯誤都會被固定 圖像需要比它告訴你更大,嘗試像600x400像素 可以添加多個圖像標籤只是repeate行並更換圖像URL 你還可以添加一個描述 希望幫助

相關問題