2011-08-22 80 views
1

好吧,我知道這個話題有很多帖子,我讀過很多帖子;但是,我還沒有能夠解決我的問題。Facebook開放圖協議不起作用

我正在嘗試向網站添加一個Facebook like按鈕,並使用Open Graph協議爲發佈到點擊Like按鈕的個人新聞提要發佈的帖子發送特定信息。

這是代碼塊我使用的網站上:

HTML標籤:

<html xmlns="http://www.w3.org/1999/xhtml" xmlns:og="http://opengraphprotocol.org/schema/" xmlns:fb="http://developers.facebook.com/schema/"> 

Meta標籤:

<meta property="og:title" content="ethneCITY - Reaching the unreached in the urban center!" /> 
<meta property="og:type" content="website" /> 
<meta property="og:image" content="http://www.ethnecity.com/dev/images/share.png" /> 
<meta property="og:site_name" content="ethneCITY" /> 
<meta property="fb:admins" content="61800397" /> 
<meta property="og:description" content="100 yrs ago we sent missionaries to the nations to look for the cities. Today you go to the cities & you find the nations." /> 

像Facebook的喜歡按鈕創建工具生成的按鈕代碼:

<div id="fb-root"></div><script src="http://connect.facebook.net/en_US/all.js#appId=145713945515336&amp;xfbml=1"></script><fb:like href="http://www.ethnecity.com" send="true" layout="button_count" width="150" show_faces="false" action="like" colorscheme="dark" font="tahoma"></fb:like> 

它如何出現在我的新聞Feed中? (不是我想要的) - http://tinypic.com/r/axi2kg/7

任何人有任何想法,爲什麼當我點擊像按鈕它只顯示在我的新聞源這樣的帖子,而不是使用meta標籤的飼料內容?

回答