0

Web サイトに facebook API を使用しようとしています。しかし、私はこのようなエラーが発生します

Fatal error: Uncaught CurlException: 1: Protocol https not supported or disabled in libcurl throw in /home/batav1/public_html/permaisuri/include/fbsdk/src/base_facebook.php 行 887

phpinfo()と入力してcurl構成を確認しましたが、結果は次のとおりです

cURL support enabled
cURL Information libcurl/7.21.0 zlib/1.2.3 libidn/0.6.5

私は何をすべきか?これが私のコードです:

<?php
require 'include/fbsdk/src/facebook.php';
$facebook = new Facebook(array(
  'appId'  => '33025497038xxxx',
  'secret' => '87be6ab5175a9be7c7d48be74dd5xxxx',
));

$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;
  }
}

if ($user) {
  $logoutUrl = $facebook->getLogoutUrl();
} else {
  $loginUrl = $facebook->getLoginUrl();
}

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

?>
<!doctype html>
<html xmlns:fb="http://www.facebook.com/2008/fbml">
  <head>
    <title>php-sdk</title>
    <style>
      body {
        font-family: 'Lucida Grande', Verdana, Arial, sans-serif;
      }
      h1 a {
        text-decoration: none;
        color: #3b5998;
      }
      h1 a:hover {
        text-decoration: underline;
      }
    </style>
  </head>
  <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>
4

2 に答える 2

-1

問題は、curl拡張機能にsslサポートがコンパイルされていないことです。オプション--with-curlおよび--with-opensslを使用してPHPを再コンパイルする必要があります。

お役に立てば幸いです。

于 2012-06-20T08:03:04.430 に答える
-1

It seems that your php setup doesnt seem to support the https wrapper

To alow https wraper :- the php_openssl extension must exist and enabled - allow_url_include must be set to on

in the php.ini file you add this lines if not exists:

extension=php_openssl.dll

allow_url_include = On
于 2012-06-20T07:59:59.127 に答える