2016-05-11 8 views
0

私はこのドキュメントlinkに続いて、Google IDツールキットを使用してphpでログインを作成しています。空白として表示される以下のコードインデックスページを使用しているとき。ブラウザコンソールで、(500内部サーバーエラー)のようなエラーが表示されます。 index.phpの中のindex.phpGoogle IDツールキットのログインがPHP用に機能していません

<!DOCTYPE html> 
<html> 
<head> 

<!-- 1: Load the Google Identity Toolkit helpers --> 
<?php 
    set_include_path(get_include_path() . PATH_SEPARATOR . __DIR__ .'/vendor/google/apiclient/src'); 
    require_once __DIR__ . '/vendor/autoload.php'; 

    $gitkitClient = Gitkit_Client::createFromFile(dirname(__FILE__) . '/gitkit-server-config.json'); 
    $gitkitUser = $gitkitClient->getUserInRequest(); 
?> 
<!-- End modification 1 --> 

<script type="text/javascript" src="//www.gstatic.com/authtoolkit/js/gitkit.js"></script> 
<link type=text/css rel=stylesheet href="//www.gstatic.com/authtoolkit/css/gitkit.css" /> 

<script type=text/javascript> 
    window.google.identitytoolkit.signInButton(
    '#navbar', 
    { 
     widgetUrl: "/gitkit", 
     signOutUrl: "/index" 
    } 
); 
</script> 
</head> 
<body> 
<div id="navbar"></div> 

<!-- 2: Print the user information if a signed in user is present --> 
<p> 
    <?php if ($gitkitUser) { ?> 
    Welcome back!<br><br> 
    Email: <?= $gitkitUser->getEmail() ?><br> 
    Id: <?= $gitkitUser->getUserId() ?><br> 
    Name: <?= $gitkitUser->getDisplayName() ?><br> 
    Identity provider: <?= $gitkitUser->getProviderId() ?><br> 
    <?php } else { ?> 
    You are not logged in yet. 
    <?php } ?> 
</p> 
<!-- End modification 2 --> 

</body> 
</html> 

gitkit.php

<!DOCTYPE html> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> 

<!-- Copy and paste here the client configuration from Developer Console into the config variable --> 
<script type="text/javascript" src="//www.gstatic.com/authtoolkit/js/gitkit.js"></script> 
<link type="text/css" rel="stylesheet" href="//www.gstatic.com/authtoolkit/css/gitkit.css" /> 
<script type="text/javascript"> 
    var config = 
    // Copy and paste client configuration here 
    ; 
    // The HTTP POST body should be escaped by the server to prevent XSS 
    window.google.identitytoolkit.start(
     '#gitkitWidgetDiv', // accepts any CSS selector 
     config, 
     JSON.parse('<?php echo json_encode(file_get_contents("php://input")); ?>') 
); 
</script> 
<!-- End modification --> 

</head> 
<body> 

<!-- Include the sign in page widget with the matching 'gitkitWidgetDiv' id --> 
<div id="gitkitWidgetDiv"></div> 
<!-- End identity toolkit widget --> 

</body> 
</html> 

答えて

関連する問題