我开始为我的网页编写一个新的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是无效的。
答案 0 :(得分:1)
无论您是正确设置app_id还是app_secret,此示例都应显示Naitik的图片。如果没有,则表示您的example.php文件设置不正确或服务器出现问题。
加载页面时出现的PHP错误是什么?
- 编辑 -
请参阅此帖子了解解决方案: OAuth Error: This IP can't make requests for that application
答案 1 :(得分:1)
也许您的移动解决方案不在Facebook应用的允许域/子域中?我的意思是,也许您将应用程序域设置为“something.com”,但是您尝试从“mobile.something.com”调用登录URL,这是显示空白页面的正当理由。