我需要制作一个PHP脚本,在Google日历上创建一个sigle事件。我在设置客户端 ID、客户端密码、开发密钥和创建新事件时没有问题。
我唯一的问题是 OAuth2,特别是我需要建立永久连接,我不想每次运行脚本时都进行身份验证。
实际上,使用此脚本,我可以获取令牌和刷新令牌,但是每小时我的令牌都会过期,我不知道如何刷新它。如何编辑此代码以执行此操作?是否可以将令牌和刷新令牌同时保存在某个位置并始终使用相同的数据?
我收到一个未捕获的异常"Google_AuthException",消息"刷新 OAuth2 令牌时出错",消息:"{"错误":"invalid_grant"
我已经在stackoverflow中阅读了有关此主题的其他一些帖子,但是我仍然没有找到解决方案... :\
<?php
require_once 'src/Google_Client.php';
require_once 'src/contrib/Google_CalendarService.php';
session_start();
$client = new Google_Client();
$client->setApplicationName("Calendar App");
$client->setClientId('xxxx');
$client->setClientSecret('yyy');
$client->setRedirectUri('http://www.zzzzzz');
$client->setDeveloperKey('kkk');
$client->setAccessType('offline');
$cal = new Google_CalendarService($client);
if (isset($_GET['logout'])) {
unset($_SESSION['token']);
}
if (isset($_GET['code'])) {
$client->authenticate($_GET['code']);
$_SESSION['token'] = $client->getAccessToken();
header('Location: http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF']);
}
if (isset($_SESSION['token'])) {
//echo $_SESSION['token'];
//$client->setAccessToken($_SESSION['token']);
$authObj = json_decode($_SESSION['token']);
$accessToken = $authObj->access_token;
$refreshToken = $authObj->refresh_token;
$tokenType = $authObj->token_type;
$expiresIn = $authObj->expires_in;
echo 'access_token = ' . $accessToken;
echo '<br />';
echo 'refresh_token = ' . $refreshToken;
echo '<br />';
echo 'token_type = ' . $tokenType;
echo '<br />';
echo 'expires_in = ' . $expiresIn;
}
if(!empty($cookie)){
$client->refreshToken($this->Cookie->read('token'));
}
if ($client->getAccessToken()) {
$calList = $cal->calendarList->listCalendarList();
$_SESSION['token'] = $client->getAccessToken();
} else {
$authUrl = $client->createAuthUrl();
print "<a class='login' href='$authUrl'>Connect Me!</a>";
}
// Creation of a single event
$event = new Google_Event();
$event->setSummary($event_name);
$event->setLocation('');
....
?>
非常感谢您的支持!
本页 https://developers.google.com/accounts/docs/OAuth2WebServer#offline 说明刷新令牌的工作原理,以及如何使用它通过原始 http 获取新的访问令牌。
从这个问题 如何使用谷歌API客户端刷新令牌? 这是PHP等效项
here is the snippet to set token, before that make sure the access type should be set to offline
if (isset($_GET['code'])) {
$client->authenticate();
$_SESSION['access_token'] = $client->getAccessToken();
}
To refresh token
$google_token= json_decode($_SESSION['access_token']);
$client->refreshToken($google_token->refresh_token);
this will refresh your token, you have to update it in session for that you can do
$_SESSION['access_token']= $client->getAccessToken()
调试按照以下三个步骤调试任何 oauth 应用程序
确保您已经阅读了 https://developers.google.com/accounts/docs/OAuth2 以及相应的子页面(webapp,javascript等),具体取决于您使用的oauth版本。如果您不了解应用程序在做什么,则调试应用程序不会走得很远。
使用 https://developers.google.com/oauthplayground/的 Oauth Playground 完成 Oauth 步骤,并最终进行 Google API 调用。这将确认您的理解,并向您展示http调用和响应的外观
使用跟踪/日志记录/代理等来跟踪来自应用的实际 http 流量。 将此与您在步骤 2 中观察到的内容进行比较。这应该会告诉您问题所在。
我之前遇到过此错误,因为我尝试进行身份验证两次。
既然你有这一行:
if (isset($_GET['code']))
当代码位于查询字符串中时,它将尝试进行身份验证,而不管你是否已通过身份验证。在尝试(重新)进行身份验证之前,请尝试检查 SESSION 令牌是否存在。
尝试删除 setDeveloperKey(),这给我带来了一些问题,似乎不需要。