Facebook SDK 3我甚至不知道这个错误是什么

时间:2012-06-16 06:42:46

标签: php facebook facebook-graph-api

好的我今晚得到了一个奇怪的错误,因为当我昨晚工作的时候,我工作正常,当我去页面工作时,作为开始之前的参考点代码我被提供了这个庞大的数据集,我不知道它是什么或意味着什么,现在似乎也找不到它。 有一篇参考文献提到cURL是一个问题,如果没有设置,但就像我昨晚所说的,现在工作它不会包括我在底部的卷曲的phpinfo设置..这里是我得到的数组或数据集{{ 3}}

我正在使用的php是

    // Try to get the user's id on Facebook
    $user = null;
$user_profile = null;

// See if there is a user from a cookie
$user = $this->facebook->getUser();

if ($user) {
  try {
    // Proceed knowing you have a logged in user who's authenticated.
    $user_profile = $this->facebook->api('/me');
  } catch (FacebookApiException $e) {
    show_error(print_r($e, TRUE), 500);
  }
}


//session_destroy();
$this->data['facebook'] = $this->facebook;
$this->data['user'] = $user;
$this->data['user_profile'] = $user_profile;

echo $this->facebook->getAccessToken();
$this->genfunc->debugArray('php', $_SESSION);
$this->genfunc->debugArray('php', $this->session->all_userdata());

html是

<?php if ($user) { ?>
      Your user profile is
      <pre>
        <?php print htmlspecialchars(print_r($user_profile, true)) ?>
      </pre>
      <?php echo anchor($facebook->getLogoutUrl(), 'Logout'); ?>
    <?php } else { ?>
      <fb:login-button></fb:login-button>
    <?php } ?>
    <div id="fb-root"></div>
    <script>
      window.fbAsyncInit = function() {
        FB.init({
          appId: '<?php echo $facebook->getAppID() ?>',
          cookie: true,
          xfbml: true,
          oauth: true
        });
        FB.Event.subscribe('auth.login', function(response) {
          window.location.reload();
        });
        FB.Event.subscribe('auth.logout', function(response) {
          window.location.reload();
        });
      };
      (function() {
        var e = document.createElement('script'); e.async = true;
        e.src = document.location.protocol +
          '//connect.facebook.net/en_US/all.js';
        document.getElementById('fb-root').appendChild(e);
      }());
    </script>

我已经尝试刷新我的DNS以查看这是否也是一个问题。但又没有运气。如果需要登录,则会显示登录按钮,但是一旦我登录并且它开始处理就会失败

enter image description here enter image description here

修改 通过开发者区域找到了facebook调试工具这是我的消息,不知道如果有什么意思,但正如我所说昨天工作,而不是今天。就像现在一样。

  

打开图表警告应修复推断属性:   应该明确提供'og:url'属性,即使值可以   从其他标签推断。推断属性:'og:title'   应明确提供属性,即使值可以   从其他标签推断。推断属性:'og:description'   应明确提供属性,即使值可以   从其他标签推断。

0 个答案:

没有答案