我已经从 Google PHP 客户端库下载了新的 Gmail API 源代码。
我使用以下方法初始化了服务:
set_include_path("./google-api-php-client-master/src/".PATH_SEPARATOR.get_include_path());
require_once 'Google/Client.php';
require_once 'Google/Service/Gmail.php';
$client = new Google_Client();
$client->setClientId($this->config->item('gmailapi_clientid'));
$client->setClientSecret($this->config->item('gmailapi_clientsecret'));
$client->setRedirectUri(base_url('auth'));
$client->addScope('email');
//$client->addScope('profile');
$client->addScope('https://mail.google.com');
$client->setAccessType('offline');
$gmailService = new Google_Service_Gmail($client);
接下来我该怎么办?如何使用 Gmail API PHP 库读取 Gmail 邮件?
原文由 Anandhan 发布,翻译遵循 CC BY-SA 4.0 许可协议
为了演示,你可以这样做: