0

我开始为我的网页编写一个新的 Facebook 应用程序。
我拥有一个HTTPS / SSL Cert为这个应用程序设置了配置的有效文件。 PHP并且Apache正在运行。

问题:
当我尝试运行一个简单的 Facebook php 脚本时,它显示了一个没有内容的空白页面。例如,我上传了 facebook example.php,当我打开页面时它仍然显示一个空白页面。和APP secret设置APP ID正确。

有人对我有什么建议吗?

编辑:

    <?php

require '/src/facebook.php';

$facebook = new Facebook(array(
  'appId'  => 'xxxx(appid)',
  'secret' => 'xxxx(secret)',
));

$user = $facebook->getUser();

if ($user) {
  try {
    $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>

此代码来自https://github.com/facebook。它的 example.php 不起作用。

4

2 回答 2

1

无论您是否正确设置了 app_id 或 app_secret,此示例都应向您显示 Naitik 的图片。如果没有,则表示您的 example.php 文件设置不正确,或者您的服务器有问题。

加载页面时遇到的 PHP 错误是什么?

- 编辑 -

请参阅此帖子以获取解决方案: OAuth Error: This IP can't make requests for that application

于 2013-04-08T09:13:08.703 回答
1

也许您的移动解决方案超出了您的 Facebook 应用程序允许的域/子域?我的意思是,也许您将您的应用程序域设置为“something.com”,但您试图从“mobile.something.com”调用登录网址,这将是显示空白页面的正当理由。

于 2014-03-07T15:21:52.560 回答