Идентификатор Google Analytics для входа в систему не работает для php

Я выполнил эту ссылку документа, чтобы создать логин в php с помощью инструментария идентификации Google. когда я использую ниже указанную страницу индекса кода, отображающую пробел. В консоли браузера отображается ошибка (500 внутренних ошибок сервера). index.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>