0

fb:comments を使用すると、次のエラーが発生します: 例:Warning: http://www.goodnewstab.com/article/HealthTechnolgy/Health/Cuts-That-Save-A-Millon-Hearts is unreachable.

私がやっていること:

.net 4.0 を使用した URL 書き換え

次のコードベースを含めました

<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:og="http://ogp.me/ns#"
      xmlns:fb="https://www.facebook.com/2008/fbml">
<head>
<meta property="fb:app_id" content="358301920913978" />
<meta property="og:type" content="article" />
<meta property="og:site_name" content="The Good News Tab" />
<meta property="og:url" content="http://www.goodnewstab.com/article/HealthTechnolgy/Health/Cuts-That-Save-A-Millon-Hearts/" />
<meta property="og:title" content="Cuts That Save A Millon Hearts" />
<meta property="og:description" content="Cuts That Save A Millon Hearts" />

    <!-- FACEBOOK JAVASCRIPT-->
    <script type="text/javascript">
        (function (d, s, id) {
            var js, fjs = d.getElementsByTagName(s)[0];
            if (d.getElementById(id)) { return; }
            js = d.createElement(s); js.id = id;
           // js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=";
              js.src = "//connect.facebook.net/en_US/all.js#xfbml=1&appId=358301920913978";
            fjs.parentNode.insertBefore(js, fjs);
        } (document, 'script', 'facebook-jssdk'));</script>

    <!-- ================= -->

</head>
<body>
<fb:comments  href='http://www.goodnewstab.com/article/HealthTechnolgy/Health/Cuts-That-Save-A-Millon-Hearts' num_posts='10' width='570'></fb:comments>
</body>
4

1 に答える 1

0

https://developers.facebook.com/tools/debug/og/object?q=http%3A%2F%2Fwww.goodnewstab.com%2Farticle%2FHealthTechnolgy%2FHealth%2FCuts-That-Save-A-Millon-Hearts

あなたの UL は自動的にhttp://www.goodnewstab.com/homeにリダイレクトし、それ自体に再度リダイレクトすることで循環リダイレクトを引き起こします: https://developers.facebook.com/tools/debug/og/object?q= http%3A%2F%2Fwww.goodnewstab.com%2Fホーム

于 2012-12-11T12:46:21.723 に答える