0

我从 github(developers.facebook.com 提供的链接)下载了 php sdk。我在根目录上传了 src 文件夹。现在,我粘贴了代码并将 appId 和 secret 替换为我的。但是页面显示服务器错误。以下是我的代码:-

<?php
require 'src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => 'xxxxxxxxxxxxxxxx',
  'secret' => 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxxx',
));

$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) {
    error_log($e);
    $user = null;
  }
}

// Login or logout url will be needed depending on current user state.
if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl();
}

$naitik = $facebook->api('/naitik');

?>
<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
<title>php-sdk</title>
  <body>
    <h1>php-sdk</h1>

    <?php if ($user): ?>
      <a href="<?php echo $logoutUrl; ?>">Logout</a>
    <?php else: ?>
      <div>
        Login using OAuth 2.0 handled by the PHP SDK:
        <a href="<?php echo $loginUrl; ?>">Login with Facebook</a>
      </div>
    <?php endif ?>

    <h3>PHP Session</h3>
    <pre><?php print_r($_SESSION); ?></pre>

    <?php if ($user): ?>
      <h3>You</h3>
      <img src="https://graph.facebook.com/<?php echo $user; ?>/picture">

      <h3>Your User Object (/me)</h3>
      <pre><?php print_r($user_profile); ?></pre>
    <?php else: ?>
      <strong><em>You are not Connected.</em></strong>
    <?php endif ?>

    <h3>Public profile of Naitik</h3>
    <img src="https://graph.facebook.com/naitik/picture">
    <?php echo $naitik['name']; ?>
  </body>
</html>

请帮我。我非常需要一些帮助。除了 app id 和 secret 之外,我找不到任何错误,也没有修改代码的任何部分。facebook.php 文件仅在 src 文件夹中。你可以在http://beta.jokesnfunnypics.com/login找到我的输出。

4

1 回答 1

1

问题可能是您缺少 php Curl 扩展

Facebook PHP SDK 使用 Curl 发送请求。

所以首先你需要检查你的服务器上是否安装了 CURL 扩展

像这样

function _isCurl(){
    return function_exists('curl_version');
}

如果不安装它,那么一切都会工作

于 2013-03-25T11:16:09.177 回答