0

嗨,我最近一直在处理 Facebook 应用程序和操作,但它似乎对我不起作用。现在我听说点赞的社交按钮即将迁移,我什至不知道如何通过我创建的应用程序(这是一个网站应用程序)发布点赞内置操作。我从这里采取的发布操作的代码:https ://developers.facebook.com/docs/opengraph/tutorial/这就是他们所说的:

 <head prefix="og: http://ogp.me/ns# [YOUR_APP_NAMESPACE]: 
              http://ogp.me/ns/apps/[YOUR_APP_NAMESPACE]#">
  <title>OG Tutorial App</title>
  <meta property="fb:app_id" content="[YOUR_APP_ID]" /> 
  <meta property="og:type" content="[YOUR_APP_NAMESPACE]:recipe" /> 
  <meta property="og:title" content="Stuffed Cookies" /> 
  <meta property="og:image" content="http://fbwerks.com:8000/zhen/cookie.jpg" /> 
  other metatag properties etc. 
  <script type="text/javascript">
     function postCook()
   {
       FB.api(
       '/me/[YOUR_APP_NAMESPACE]:cook',
       'post',
       { recipe: 'http://fbwerks.com:8000/zhen/cookie.html' },
       function(response) {
         if (!response || response.error) {
          alert('Error occured');
         } else {
          alert('Cook was successful! Action ID: ' + response.id);
       }
      });
 }
  </script>
</head>
<body>
 <div id="fb-root"></div>
  <script>
    window.fbAsyncInit = function() {
     FB.init({
       appId      : '[YOUR_APP_ID]', // App ID
       status     : true, // check login status
       cookie     : true, // enable cookies to allow the server to access the session
        xfbml      : true  // parse XFBML
       });
     };

    // Load the SDK Asynchronously
     (function(d){
      var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
      js = d.createElement('script'); js.id = id; js.async = true;
     js.src = "//connect.facebook.net/en_US/all.js";
     d.getElementsByTagName('head')[0].appendChild(js);
   }(document));
  </script>

 etc  etc.



 <form>
   <input type="button" value="Cook" onclick="postCook()" />
  </form>

   <fb:activity actions="[YOUR_APP_NAMESPACE]:cook"></fb:activity>

事实是我无法发布任何操作(返回错误),当然我的应用程序具有我要发布的操作。有没有人有线索?我不是专业的开发人员,但我问的那些没有解决方案......非常感谢!

4

1 回答 1

0

我发现了问题!显然 PHP 中的 include 函数使我们在网站上使用的标题与 Facebook 元数据发生冲突。当我删除标题和“php start”时,所有功能(包括注释)都在工作。但这似乎仍然是一个特殊的问题:显然 Facebook 的 API 没有清除缓存,所以现在我们必须创建新页面来启用功能。无法将它们放在当前页面位置。

于 2012-08-15T09:58:55.347 回答