4

使用PHP Lib v2、Oauth 2.0使用Google 登录

经过长时间的配置,我终于配置了它,它曾经正常工作,但之后就无法正常工作。点击登录链接后,用户将向 Google 进行身份验证。在完成身份验证之前工作正常。

在使用GET变量进行回调时:

?code=something&authuser=0&prompt=consent&session_state=something

它正在生成以下错误:

致命错误:C:\xampp\htdocs\test\google-api-php-client\src\auth\Google_OAuth2.php:115 中的消息“获取 OAuth2 访问令牌时出错,消息:'invalid_client'”未捕获异常“Google_AuthException”堆栈跟踪:#0 C:\xampp\htdocs\test\google-api-php-client\src\Google_Client.php(127): Google_OAuth2->authenticate(Array, 4/xUGSPbXR0LNzW...') #1 C: \xampp\htdocs\test\google-api-php-client\index.php(40): Google_Client->authenticate('4/xUGSPbXR0LNzW...') #2 {main} 在 C:\xampp\htdocs\第 115 行的 test\google-api-php-client\src\auth\Google_OAuth2.php

使用以下代码(它将帮助您理解):

<?php
ini_set('display_errors',1);
error_reporting(E_ALL);

require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_PlusService.php';

session_start();

$client = new Google_Client();
$client->setApplicationName("Google+ PHP Starter Application");
$plus = new Google_PlusService($client);

if (isset($_REQUEST['logout'])) {
  unset($_SESSION['access_token']);
}

if (isset($_GET['code'])) {
  $client->authenticate($_GET['code']);
  $_SESSION['access_token'] = $client->getAccessToken();
  header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
}

if (isset($_SESSION['access_token'])) {
  $client->setAccessToken($_SESSION['access_token']);
}

if ($client->getAccessToken()) {
  $me = $plus->people->get('me');
  $url = filter_var($me['url'], FILTER_VALIDATE_URL);
  $img = filter_var($me['image']['url'], FILTER_VALIDATE_URL);
  $name = filter_var($me['displayName'], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH);
  $personMarkup = "<a rel='me' href='$url'>$name</a><div><img src='$img'></div>";

  $optParams = array('maxResults' => 100);
  $activities = $plus->activities->listActivities('me', 'public', $optParams);
  $activityMarkup = '';
  foreach($activities['items'] as $activity) {
    $url = filter_var($activity['url'], FILTER_VALIDATE_URL);
    $title = filter_var($activity['title'], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH);
    $content = filter_var($activity['object']['content'], FILTER_SANITIZE_STRING, FILTER_FLAG_STRIP_HIGH);
    $activityMarkup .= "<div class='activity'><a href='$url'>$title</a><div>$content</div></div>";
  }

  $_SESSION['access_token'] = $client->getAccessToken();
} else {
  $authUrl = $client->createAuthUrl();
}
?>
<!doctype html>
<html>
<head>
  <meta charset="utf-8">
  <link rel='stylesheet' href='style.css' />
<body>
<header><h1>Google+ Sample App</h1></header>
<div class="box">

<?php if(isset($personMarkup)): ?>
<div class="me"><?php print $personMarkup ?></div>
<?php endif ?>

<?php if(isset($activityMarkup)): ?>
<div class="activities">Your Activities: <?php print $activityMarkup ?></div>
<?php endif ?>

<?php
  if(isset($authUrl)) {
    print "<a class='login' id='g_pop' href='$authUrl'>Connect Me!</a>";
  } else {
      print_r($me);
   print "<a class='logout' href='?logout'>Logout</a>";
  }
?>
</div>
</body>
</html>

从此处获取源文件:适用于 PHP 的 Google APIs 客户端库

已经完成了:

  • 客户编号:好的
  • 客户端密码:OK
  • 重定向 URI:好的
  • Google+ API:开启

笔记:

在本地主机上工作。

4

2 回答 2

13

有同样的问题。通过从客户端密码中删除多余的空间来修复它。当你从谷歌 api 控制台复制它时,你会得到一个额外的空间。

于 2014-12-15T12:15:20.627 回答
3

仔细检查您的 Google 应用凭据(客户端 ID、客户端密码、API 密钥)是否有效并正确传递给客户端。

于 2014-11-24T20:49:19.897 回答