我正在尝试将 google oauth2 api 用于我的登录系统。它几乎可以工作了,用户可以访问我的 Web 应用程序,我阅读信息并连接用户。问题是,一旦他们离开或更换浏览器,回到我的网站,他们会再次被要求授予访问权限。
我不需要离线访问,因为除了签入用户之外,我没有使用任何 API 调用。无论如何,我被困住了,需要一些帮助!
我正在使用 google php 库(https://code.google.com/p/google-api-php-client/wiki/OAuth2),我什至将 ApprovalPrompt 设置为自动。仍然没有运气。
我的代码:
public function googleLogin()
{
$this->set('connect', "Google login");
$client = new apiClient();
$client->setApprovalPrompt('auto');
$client->setApplicationName("Authentication");
$client->setClientId(G_OAUTH2_APP_ID);
$client->setClientSecret(G_OAUTH2_SECRET);
$client->setRedirectUri(G_REDIRECT_URI);
$client->setDeveloperKey(G_DEV_KEY);
$oauth2 = new apiOauth2Service($client);
if (isset($_GET['code'])) {
$client->authenticate();
$_SESSION['token'] = $client->getAccessToken();
$redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
}
if (isset($_SESSION['token'])) {
$client->setAccessToken($_SESSION['token']);
}
if (isset($_REQUEST['logout'])) {
unset($_SESSION['token']);
$client->revokeToken();
}
//print_r($client->getAccessToken()); exit;
if ($client->getAccessToken()) {
$user = $oauth2->Guserinfo->get();
// These fields are currently filtered through the PHP sanitize filters.
// See http://www.php.net/manual/en/filter.filters.sanitize.php
//$email = filter_var($user['email'], FILTER_SANITIZE_EMAIL);
//$img = filter_var($user['picture'], FILTER_VALIDATE_URL);
// The access token may have been updated lazily.
$_SESSION['token'] = $client->getAccessToken();
//do stuff with user data
$data = $this->linkUser($user, "google");
if ($data['state']=="createUser") {
$this->set("data",$data);
}
} else {
$authUrl = $client->createAuthUrl();
header("Location: " . $authUrl);
}
}
编辑:
我添加了$client->setAccessType("online");
我不知道的行,如果这是我唯一需要做的事情,或者如果我在浏览器/操作系统之间有错误:上次我尝试使用 lion/chrome 它没有工作但在 w7/firefox 上没关系。好吧,否则我只是失去理智:p