PHPSDK中的Facebook getuser返回500内部错误

PHPSDK中的Facebook getuser返回500内部错误,php,facebook,sdk,Php,Facebook,Sdk,我有这种类型的问题,我使用的是PHPSDK的最新版本,从3月份开始,当我必须登录时,我的应用程序被停止。我已经完成了最新版本的上传,但是现在当php执行时 $user = $facebook->getUser(); 我获得错误500内部等。我什么都试过了,但现在我不知道有什么问题,我也试过了 但我只得到内部错误。如果有人能帮我。代码是这样的 <?php require 'src/facebook.php'; $facebook = new Facebook(ar

我有这种类型的问题,我使用的是PHPSDK的最新版本,从3月份开始,当我必须登录时,我的应用程序被停止。我已经完成了最新版本的上传,但是现在当php执行时

$user = $facebook->getUser();
我获得错误500内部等。我什么都试过了,但现在我不知道有什么问题,我也试过了

但我只得到内部错误。如果有人能帮我。代码是这样的

<?php

    require 'src/facebook.php';

    $facebook = new Facebook(array(
      'appId'  => 'fdsafdasfdasfdsafas8',
      'secret' => 'dasgasgasgasgas',
    ));

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

    if ($user) {
      try {
        // Proceed knowing you have a logged in user who's authenticated.
        $user_profile = $facebook->api('/me');
      } catch (FacebookApiException $e) {
        echo '<pre>'.htmlspecialchars(print_r($e, true)).'</pre>';
        $user = null;
      }
    }

    ?>
    <!DOCTYPE html>
    <html xmlns:fb="http://www.facebook.com/2008/fbml">
      <body>
        <?php if ($user) { ?>
          Your user profile is
          <pre>
            <?php print htmlspecialchars(print_r($user_profile, true)) ?>
          </pre>
        <?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>
      </body>
    </html>

您可能需要启用ssl库,

您还可以查看Apache日志中的错误

非常感谢,我在服务器上尝试了我的安全页面,并获得了错误500,因此我认为您有理由,现在我发了一封电子邮件给house hosting来解决这个问题,我在安全页面正常后再试一次…谢谢。