Gmail API:如何获取访问令牌?
Gmail API: How to get access token?
我正在测试 Gmail API。
到目前为止,我已经完成了以下工作:
- 我已经在 Google Developers Console
中创建了项目
- 我启用了
Gmail API
。
- 我创建了一个新的
Client ID
和 client secret
。
- 在我的 PHP 脚本中,我安装了 PHP 客户端库并遵循
instructions for the setup in PHP.
所以现在当我 运行 文件 quickstart.php 时,它给出 link。当我打开它时,会出现一个授权页面,我在其中授权我的应用程序访问 Gmail API。
然后它重定向到我在设置中声明的重定向 URI(添加代码参数)。
在地址栏中,它完全是这样的:
http://localhost/main/gmail_callback?code=MY_CODE
其中 main 是我的控制器,而 gmail_callback 到目前为止只是一个空白函数。
它应该是正确的,因为这些是我的设置:
- Javascript 来源:
http://localhost
- 重定向 URI:
http://localhost/main/gmail_callback
接下来我该做什么?
几个月前我做了一个 Oauth Gmail,我得到了这样的东西:
在我的回调函数中:
if (! isset($_GET['code'])) {
$auth_url = $client->createAuthUrl();
return $this->redirect($auth_url);
} else {
$client->authenticate($_GET['code']);
$_SESSION['access_token'] = $client->getAccessToken();
$redirect_uri = Router::url('/', true).'Users/gmail';
return $this->redirect($redirect_uri);
}
在我的 gmail()
函数中:
public function gmail(){
require APPLIBS.'Google/src/Google'.DS.'autoload.php';
$client = new Google_Client();
$client->setAuthConfigFile('../Config/client_secrets.json');
$client->addScope(Google_Service_Oauth2::PLUS_LOGIN);
$client->addScope(Google_Service_Oauth2::USERINFO_EMAIL);
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
$client->setAccessToken($_SESSION['access_token']);
$oauth_service = new Google_Service_Oauth2($client);
$data['Profile']['last_name'] = $oauth_service->userinfo->get()->familyName;
}
}
$data['Profile']['last_name']
包含用户的last_name,例如
流程的下一步是将授权码交换为访问令牌(如果您请求离线访问,这还将包括刷新令牌)。如果您使用 https://developers.google.com/oauthplayground/ 手动执行流程,您将能够看到涉及的 URL。有一个 php 库调用可以做同样的事情,但我个人更喜欢发送我自己的 HTTP 而不是使用库。即使您确实使用了库,仍然值得花一点时间来了解 HTTP 流程,这样您就可以更轻松地调试遇到的任何问题。
基本上我走错了。遵循这些说明足以获得令牌:
https://developers.google.com/gmail/api/quickstart/php
要点是从命令行而不是从应用程序访问文件。
我正在测试 Gmail API。
到目前为止,我已经完成了以下工作:
- 我已经在 Google Developers Console 中创建了项目
- 我启用了
Gmail API
。 - 我创建了一个新的
Client ID
和client secret
。 - 在我的 PHP 脚本中,我安装了 PHP 客户端库并遵循 instructions for the setup in PHP.
所以现在当我 运行 文件 quickstart.php 时,它给出 link。当我打开它时,会出现一个授权页面,我在其中授权我的应用程序访问 Gmail API。
然后它重定向到我在设置中声明的重定向 URI(添加代码参数)。
在地址栏中,它完全是这样的:
http://localhost/main/gmail_callback?code=MY_CODE
其中 main 是我的控制器,而 gmail_callback 到目前为止只是一个空白函数。
它应该是正确的,因为这些是我的设置:
- Javascript 来源:
http://localhost
- 重定向 URI:
http://localhost/main/gmail_callback
接下来我该做什么?
几个月前我做了一个 Oauth Gmail,我得到了这样的东西:
在我的回调函数中:
if (! isset($_GET['code'])) {
$auth_url = $client->createAuthUrl();
return $this->redirect($auth_url);
} else {
$client->authenticate($_GET['code']);
$_SESSION['access_token'] = $client->getAccessToken();
$redirect_uri = Router::url('/', true).'Users/gmail';
return $this->redirect($redirect_uri);
}
在我的 gmail()
函数中:
public function gmail(){
require APPLIBS.'Google/src/Google'.DS.'autoload.php';
$client = new Google_Client();
$client->setAuthConfigFile('../Config/client_secrets.json');
$client->addScope(Google_Service_Oauth2::PLUS_LOGIN);
$client->addScope(Google_Service_Oauth2::USERINFO_EMAIL);
if (isset($_SESSION['access_token']) && $_SESSION['access_token']) {
$client->setAccessToken($_SESSION['access_token']);
$oauth_service = new Google_Service_Oauth2($client);
$data['Profile']['last_name'] = $oauth_service->userinfo->get()->familyName;
}
}
$data['Profile']['last_name']
包含用户的last_name,例如
流程的下一步是将授权码交换为访问令牌(如果您请求离线访问,这还将包括刷新令牌)。如果您使用 https://developers.google.com/oauthplayground/ 手动执行流程,您将能够看到涉及的 URL。有一个 php 库调用可以做同样的事情,但我个人更喜欢发送我自己的 HTTP 而不是使用库。即使您确实使用了库,仍然值得花一点时间来了解 HTTP 流程,这样您就可以更轻松地调试遇到的任何问题。
基本上我走错了。遵循这些说明足以获得令牌:
https://developers.google.com/gmail/api/quickstart/php
要点是从命令行而不是从应用程序访问文件。