将 Gmail API 与 PHP 一起使用:如何使 CLI 应用程序在浏览器中运行?
Posted
技术标签:
【中文标题】将 Gmail API 与 PHP 一起使用:如何使 CLI 应用程序在浏览器中运行?【英文标题】:Using Gmail API with PHP: How to make a CLI app work in the browser? 【发布时间】:2021-08-13 05:11:35 【问题描述】:我正在测试 Gmail API。
到目前为止,我使用的是php client example,并将我的环境选择为“桌面”,因为“其他”不可用,因此网站环境无法正常工作。
它不起作用,因为当我使用浏览器访问 php 文件时,我得到:
在浏览器中打开以下链接:https://accounts.google.com/o/oauth2/auth?response_type=code&access_type=offline&client_id=35587452231052-k48bjsgefmnsbd654shdbf026q1un.apps.googleusercontent.com&redirect_uri=urn%3Aietf%3Awg%3Aoauth%3A2.0%3Aoob&state&scope=https%3A%2F%2Fwww.googleapis.com%2Fauth%2Fgmail.readonly&prompt=select_account%20consent输入验证码:
而且没有地方真正输入验证后的验证码。
当我从终端访问它时,我只需粘贴验证码即可。
这可能是一个愚蠢的问题,但我如何让它在页面中工作?
这是我的文件:
<?php
require_once 'vendor/autoload.php';
/**
* Returns an authorized API client.
* @return Google_Client the authorized client object
*/
function getClient()
$client = new Google_Client();
$client->setApplicationName('Gmail Access');
$client->setScopes(Google_Service_Gmail::GMAIL_READONLY);
$client->setAuthConfig(__DIR__ . 'credentials.json');
$client->setAccessType('offline');
$client->setPrompt('select_account consent');
// Load previously authorized token from a file, if it exists.
// The file token.json stores the user's access and refresh tokens, and is
// created automatically when the authorization flow completes for the first
// time.
$tokenPath = 'token.json';
if (file_exists($tokenPath))
$accessToken = json_decode(file_get_contents($tokenPath), true);
$client->setAccessToken($accessToken);
// If there is no previous token or it's expired.
if ($client->isAccessTokenExpired())
// Refresh the token if possible, else fetch a new one.
if ($client->getRefreshToken())
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
else
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
printf("Open the following link in your browser:\n%s\n", $authUrl);
print 'Enter verification code:';
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
$client->setAccessToken($accessToken);
// Check to see if there was an error.
if (array_key_exists('error', $accessToken))
throw new Exception(join(', ', $accessToken));
// Save the token to a file.
if (!file_exists(dirname($tokenPath)))
mkdir(dirname($tokenPath), 0700, true);
file_put_contents($tokenPath, json_encode($client->getAccessToken()));
return $client;
// Get the API client and construct the service object.
$client = getClient();
$service = new Google_Service_Gmail($client);
.........
我添加到文件中的所有内容都显示在 CLI 中,但我无法从那里继续前进并真正让它在浏览器中运行...
【问题讨论】:
【参考方案1】:您应该关注OAuth Flow for Web applications。凭据对象有所不同,令牌将存储在会话中,这意味着您不必将其复制并粘贴到终端中。
示例代码:
https://github.com/googleapis/google-api-php-client/blob/master/examples/simple-file-upload.php参考资料:
https://developers.google.com/identity/protocols/oauth2/web-server https://github.com/googleapis/google-api-php-client/blob/master/README.md#authentication-with-oauth【讨论】:
以上是关于将 Gmail API 与 PHP 一起使用:如何使 CLI 应用程序在浏览器中运行?的主要内容,如果未能解决你的问题,请参考以下文章
如何使用来自 postmnan 本机应用程序的 gmail rest api 发送邮件