2

我知道这不会那么困难;也许我会以错误的方式解决这个问题。希望你能帮助我。

我有一个网站需要能够将字符串发布到某人的 Facebook 时间线。

我已经让他们正确登录,但在他们获得许可后,我还没有找到任何工作代码来向他们的时间线提交信息。

我按照这里的例子没有运气。我有

  • 创建了一个应用程序
  • 登录脸书
  • 用食谱对象定义了一个 Cook 动作
  • 使用他们提供的代码在我的网站上创建了一个页面,替换[your_app_id]为我的应用程序 ID
  • 尝试发布厨师操作

但是当我在我的网站上单击他们的示例页面上的烹饪按钮时,它给了我错误:

No callback passed to the ApiClient for https://graph.facebook.com/me/fblaevents:cook 

error occurred弹出浏览器警报。

这是我正在使用的示例代码:

<html 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# fblaevents: 
              http://ogp.me/ns/apps/fblaevents#">
  <title>OG Tutorial App</title>
  <meta property="fb:app_id" content="542182755801091" /> 
  <meta property="og:type" content="fblaevents: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://fbwerks.com:8000/zhen/cookie.html">

  <script type="text/javascript">
  function postCook()
  {
      FB.api(
        '/me/fblaevents: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      : '542182755801091', // 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>

  <h3>Stuffed Cookies</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

1 回答 1

0

您应该用您自己的替换 JS 代码中的 OG 元标记和配方 url。由于上面的代码只是一个起始代码,而不是一个工作演示(或者可能是,但现在链接已经死了)。

另外,既然你得到了Error occured那么很可能response.error里面有一些东西,所以你应该通过调用控制台方法来检查它的值,例如:

if (!response || response.error) {
   console.log('Error occured: ', response.error);
} else {

这会给你:

发生错误:对象 {类型:“异常”,消息:“无法从 URL 检索数据。”,代码:1660002}

于 2013-01-13T10:54:21.390 回答