如何使用 php 使用 google api 的授权码获取访问令牌?
How fetch access token with auth code for google api using php?
我正在处理 google 文档 api,我想发送请求并获取授权代码,作为交换将提供访问令牌。下面的代码工作正常,但问题是我必须复制授权 url 并将其粘贴到浏览器,然后从浏览器 url,我正在复制授权代码并将其粘贴到终端return 正在我的目录中创建一个 token.json 文件。但问题是我想在我的项目中实现同样的事情,我不能像这样将 url 从一个地方复制到 another.I 动态地想要它。
任何人都可以帮助我们如何修改下面的代码以发送 auth url 请求并在 return 中我获得了 auth 代码,我可以从中获取访问令牌而无需复制和粘贴它到终端处理。
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Docs API PHP Quickstart');
$client->setScopes([
"https://www.googleapis.com/auth/documents",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/drive"
]);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setApprovalPrompt('force');
// Load previously authorized credentials from a file.
$credentialsPath = expandHomeDirectory('token.json');
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Store the credentials to disk.
if (!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
// printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
PHP 客户端库并非设计用于使用控制台应用程序或已安装的应用程序为您打开 Web 浏览器。您需要向用户显示 Oauth2 浏览器 link,然后他们可以在浏览器中打开,然后粘贴回代码中。
该库不支持在控制台应用程序中为您打开浏览器 window 的功能。
// 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);
我正在处理 google 文档 api,我想发送请求并获取授权代码,作为交换将提供访问令牌。下面的代码工作正常,但问题是我必须复制授权 url 并将其粘贴到浏览器,然后从浏览器 url,我正在复制授权代码并将其粘贴到终端return 正在我的目录中创建一个 token.json 文件。但问题是我想在我的项目中实现同样的事情,我不能像这样将 url 从一个地方复制到 another.I 动态地想要它。
任何人都可以帮助我们如何修改下面的代码以发送 auth url 请求并在 return 中我获得了 auth 代码,我可以从中获取访问令牌而无需复制和粘贴它到终端处理。
function getClient()
{
$client = new Google_Client();
$client->setApplicationName('Google Docs API PHP Quickstart');
$client->setScopes([
"https://www.googleapis.com/auth/documents",
"https://www.googleapis.com/auth/drive.file",
"https://www.googleapis.com/auth/drive"
]);
$client->setAuthConfig('credentials.json');
$client->setAccessType('offline');
$client->setApprovalPrompt('force');
// Load previously authorized credentials from a file.
$credentialsPath = expandHomeDirectory('token.json');
if (file_exists($credentialsPath)) {
$accessToken = json_decode(file_get_contents($credentialsPath), true);
} else {
// Request authorization from the user.
$authUrl = $client->createAuthUrl();
$authCode = trim(fgets(STDIN));
// Exchange authorization code for an access token.
$accessToken = $client->fetchAccessTokenWithAuthCode($authCode);
// Store the credentials to disk.
if (!file_exists(dirname($credentialsPath))) {
mkdir(dirname($credentialsPath), 0700, true);
}
file_put_contents($credentialsPath, json_encode($accessToken));
// printf("Credentials saved to %s\n", $credentialsPath);
}
$client->setAccessToken($accessToken);
// Refresh the token if it's expired.
if ($client->isAccessTokenExpired()) {
$client->fetchAccessTokenWithRefreshToken($client->getRefreshToken());
file_put_contents($credentialsPath, json_encode($client->getAccessToken()));
}
return $client;
}
PHP 客户端库并非设计用于使用控制台应用程序或已安装的应用程序为您打开 Web 浏览器。您需要向用户显示 Oauth2 浏览器 link,然后他们可以在浏览器中打开,然后粘贴回代码中。
该库不支持在控制台应用程序中为您打开浏览器 window 的功能。
// 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);