0

您可以在下面找到我使用的代码,您可以看到它是从示例代码中复制而来的。但是结果非常不稳定,经常返回“意外错误,请稍后再试”,开发应用程序也有一些问题。它随机清除应用程序名称空间,而我没有删除它。事实上,应用程序命名空间仍然处于活动状态,所以如果我重新输入我的应用程序命名空间,它会说它已经存在。

这让我忙了 12 个小时。我想知道其他人是否遇到同样的问题,这可能是 Facebook 部分的错误。

<html xmlns:fb="http://ogp.me/ns/fb#"
    xmlns="http://www.w3.org/1999/xhtml" dir="ltr" lang="en-US"
      xmlns:fb="https://www.facebook.com/2008/fbml"> 
<head prefix="og: http://ogp.me/ns# mycookieapp: 
                  http://ogp.me/ns/apps/mycookieapp#">
  <title>OG Tutorial App</title>
  <meta property="fb:app_id" content="115973895205576" /> 
  <meta property="og:type" content="mycookieapp:recipe" /> 
  <meta property="og:title" content="Stuffed Cookies" /> 
  <meta property="og:image" content="http://fbwerks.com:8000/zhen/cookie.jpg" /> 
  <meta property="og:description" content="The Turducken of Cookies" /> 
  <meta property="og:url" content="http://www.crystalminds.nl/facebook/index.html">

  <script type="text/javascript">
  function postCook()
  {
      FB.api(
        '/me/mycookieapp:cook?recipe=http://www.crystalminds.nl/facebook/index.html',
        'post',
        function(response) {
           if (!response || response.error) {
              alert('Error occured: ' + response.error.message);
           } else {
              alert('Cook was successful! Action ID: ' + response.id);
           }
        });
  }
  </script>
</head>
<body>
    <div id="fb-root"></div>
    <script>
        window.fbAsyncInit = function() {
          FB.init({
            appId      : '115973895205576', // App ID
            status     : true, // check login status
            cookie     : true, // enable cookies to allow the server to access the session
            xfbml      : true  // parse XFBML
          });
        };

        (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/nl_NL/all.js#xfbml=1&appId=115973895205576";
          fjs.parentNode.insertBefore(js, fjs);
        }(document, 'script', 'facebook-jssdk'));
    </script>

  <h3>Stuffed Cookiess</h3>
  <p>
    <img title="Stuffed Cookies" 
         src="http://fbwerks.com:8000/zhen/cookie.jpg" 
         width="550"/>
  </p>

  <br>
  <form>
    <input type="button" value="Cook" onclick="postCook()" />
  </form>
</body>
</html>
4

0 回答 0