4

我有这个问题: 为 facebook 正确配置的页面:

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

(我也试过:)

    <html xmlns:og="http://ogp.me/ns#"  
        xmlns:fb="http://ogp.me/ns/facebook#">

(和其他一些人)

在头部,对应的OG代码:app_id、url、type、title、image、description、site_name。

然后,在页面中,点赞按钮:

    <fb:like href="##my_url##" send="false" layout="button_count" show-faces="false" action="recommend"></fb:like>

但是,当按下按钮并发送表单时,在 Facebook 中,它看起来像:

    No hay ninguna descripción disponible para esta frase
    No hay ninguna descripción disponible para esta frase
    No hay ninguna descripción disponible para esta frase
    No hay ninguna descripción disponible para esta frase

在描述中...(西班牙语帐户)。标题和图片,完全没有问题。我已经使用Debug Page测试了 URL ,但没有收到任何错误,并且它正确读取了描述。

更新: 我已经制作了一个只有基本内容的测试页面,但我得到了相同的结果: http: //www.cooperativa.cl/noticias/mundo/test-facebook/2012-12-11/160015.html

有什么帮助吗?提前致谢。

4

2 回答 2

0

I'm from Argentina, and I've found this happens if I use Facebook in Spanish language [es_LA], but if I use it in Spanish (Spain) [es_ES] the post shows correctly.

The weird thing is that on my website (I have this problem too on my website) I'm using the JS SDK in es_LA and not in es_ES.

Obviously, if you use Facebook un English the post will show correctly.

于 2013-01-04T06:55:36.363 回答
0

在带有描述的html头中添加元标记

 <meta property="og:description"  content="Bla bla bla " />
于 2012-12-21T13:13:51.253 回答