0

我看不出造成差异的明显原因,但对 Facebook 友好性的编码还是很陌生。

我的网站上有一个显示 flickr 专辑的页面:http: //jpgme.co.uk/sports/index.php ?type=sets

目前,标头源代码如下所示:

<!DOCTYPE html PUBLIC '-//W3C//DTD XHTML 1.0 Transitional//EN' 'http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd'>
<html xmlns:fb="http://ogp.me/ns/fb#" xmlns='http://www.w3.org/1999/xhtml'>
<head>
    <meta http-equiv='Content-Type' content='text/html; charset=utf-8' />
    <title>Blue Line Ice Hockey Photography - Professional Ice Hockey Photography in Greater Manchester & Beyond</title>
    <link href='http://jpgme.co.uk/sports/themes/blackstripe/css/blackstripe.css' rel='stylesheet' type='text/css' />
    <link rel='alternate' type='application/rss+xml' title='Blue Line Ice Hockey Photography - Professional Ice Hockey Photography in Greater Manchester & Beyond' href='http://jpgme.co.uk/sports/index.php?type=rss' />

    <meta property="fb:admins" content="61401353" />
    <meta property="og:title" content="Blue Line Ice Hockey Photography" />
    <meta property="og:type" content="website" />
    <meta property="og:url" content="http://jpgme.co.uk/sports/"/>
    <meta property="og:image" content="http://jpgme.co.uk/images/fb.jpg"/>

</head>

但所有 facebook 刮板可以看到的是:

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN" "http://www.w3.org/TR/REC-html40/loose.dtd">
<html>
<head><meta http-equiv="content-type" content="text/html; charset=utf-8"></head>
<body>
<div id="leftcontent"></div>
4

1 回答 1

1

文件加载后尝试报废!

可能的原因是您试图在整个页面加载之前报废。

此外,使用 AJAX 的 FB 在需要时添加/删除 div,这也可能是一个问题。

于 2013-05-04T18:16:30.800 回答