0

これはかなり一般的な問題であることはわかっていますが、私が試した解決策はどれも (かなりの量) うまくいきませんでした。

https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fresidencyradio.com%2Fを使用してhttp://residencyradio.com/をスクレイピングしようとしています

サイト自体は完全に見直されています。これは来週公開され、誰かがサイトにリンクした場合に関連する画像、タイトル、情報が表示されるようにしたいのですが、現時点では、これらのプロパティが最初のように表示されていますサイトが FB にキャッシュされた時間 (ほぼ 1 年前)。

私が見る限り、関連するすべてのメタタグなどをどのように含めるかを含めました。サイトにいいねボタンを実装しようとしましたが、役に立ちませんでした. http://ogp.me/に記載されている内容に従っていますが、何も問題はありません。

!DOCTYPEからまでのページの一部を次に示します</head>

<!DOCTYPE html>
<html lang="en" prefix="og: http://ogp.me/ns#">
<head>
<meta charset=utf-8>
<title>The Residency</title>

<!--[if IE]>
    <script src="http://html5shiv.googlecode.com/svn/trunk/html5.js">
    </script>
<![endif]-->
<link href="css/reset.css" rel="stylesheet" type="text/css" />
<link href="css/stylesheet.css" rel="stylesheet" type="text/css" />
<link rel="icon" type="image/png" href="images/favicon.png" />


<!--Meta Data-->
<meta name="keywords" content="The Residency, M. Budden, Neal McClelland, Michael Budden, Radio, Residency Radio, 
Residency, Global, House, Electro, Progressive, Tech, Techno, DnB, Drum and Base, Dubstep, iTunes, Belfast, 
Northern Ireland, UK" /> 
<meta name="description" content="Brought to you by Neal McClelland and M. Budden, The Residency is a weekly global underground dance show" />
<meta property="og:title" content="The Residency A global underground dance show" />
<meta property="og:type" content="musician" />
<meta property="og:url" content="https://www.facebook.com/theresidency" />
<meta property="og:image" content="https://www.residencyradio.com/images/Residency_logo_circle.png" />
<meta property="og:site_name" content="The Residency" />
<meta property="fb:admins" content="1324839758" />

私はそれを理解しようとして数日間頭を悩ませてきたので、どんな助けも大歓迎です!

前もって感謝します!

4

1 に答える 1

1

これは推測ですが、あなたの html は有効ではなく、Facebook スクレーパーがデータの解析と抽出に失敗している可能性があります。

すべてを確認したわけではありませんが、すべてのタグを閉じているようには見えません。たとえば、説明とキーワードのメタ タグは、"/>" または ">" で終わりません。


編集

サーバーから html を読み込んだときにデバッガーが表示する内容のスクリーン キャプチャ: 画面キャプチャ

于 2012-05-09T06:54:48.467 に答える