我是google api和php的新用户,在提供身份验证并允许应用访问用户信息后,使用以下代码访问用户信息。 它要求用户登录和权限,但在允许后我仍然无法接收任何内容 $ _GET什么都不包含..
<?php
set_include_path("includes/src/" . PATH_SEPARATOR . get_include_path());
require_once 'Google/Client.php';
require_once 'Google/Service/Plus.php';
$client_id = 'XXXXXXXXXXXXXXXXXX';
$client_secret = 'XXXXXXXXXXXXXXXXXX';
$redirect_uri = 'http://XXXXXXXXXXXXXXXXXX/test.php';
$client = new Google_Client();
$client->setClientId($client_id);
$client->setClientSecret($client_secret);
$client->setRedirectUri($redirect_uri);
$client->addScope("https://www.googleapis.com/auth/userinfo.profile");
$client->addScope("https://www.googleapis.com/auth/userinfo.email");
$plus = new Google_Service_Plus($client);
print_r($_GET);
if (isset($_REQUEST['logout'])) {
unset($_SESSION['access_token']);
}
if (isset($_GET['code'])) {
$client->authenticate($_GET['code']);
$_SESSION['access_token'] = $client->getAccessToken();
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
$client->setAccessToken($_SESSION['access_token']);
$_SESSION['token'] = $client->getAccessToken();
} else {
$authUrl = $client->createAuthUrl();
}
?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><title>Testing</title></head>
<body>
<?php if (isset($authUrl)) {
print "<a class='login' href='$authUrl'>Login</a>";
} else {
print "<a class='logout' href='test.php?logout'>Logout</a>";
}
echo "<br />";
if (isset($_SESSION['access_token'])) {
$me = $plus->people->get("me");
print "<br>ID: {$me['id']}\n<br>";
print "Display Name: {$me['displayName']}\n<br>";
print "Image Url: {$me['image']['url']}\n<br>";
print "Url: {$me['url']}\n<br>";
$name3 = $me['name']['givenName'];
echo "Nombre: $name3 <br>";
$correo = ($me['emails'][0]['value']);
echo $correo;
}
?>
</body>
</html>
请让我知道我哪里出错。
答案 0 :(得分:1)
首先,您应该尝试从Google+ PHP Quickstart开始。您可以使用客户端授权,然后授权服务器或直接访问您需要的数据。不使用“登录”按钮的旧样本可能已过期。
接下来,我猜测如果您没有看到代码在GET请求中传回您的站点,那么您在重定向URI上的配置肯定有问题。确保您在客户端配置中也指向站点上正确的PHP页面。
最后,更新您正在使用的Google+ PHP客户端库的版本。快速入门中包含的版本应该是最新版本。