私はこの種の問題を抱えており、PHP SDK の最新バージョンを使用しています。3 月から、ログインを行う必要があるときにアプリケーションが停止します。最新バージョンのアップロードを行いましたが、php を実行すると
$user = $facebook->getUser();
エラー500内部等取得致します。私はすべてを試しましたが、何が問題なのかわかりません。Facebook PHP SDK 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>