gpt4 book ai didi

php - 在 PHP 中撤销 Google 访问 token

转载 作者:可可西里 更新时间:2023-11-01 14:01:22 24 4
gpt4 key购买 nike

如标题所示,我想以编程方式(在 PHP 中)撤销授予的访问 token 。我在 their website 上找到了这个, 但似乎无法在 api client library 中找到函数.有干净的库函数吗?

编辑:正如 DaimTo 指出的那样有一个函数叫做 revokeToken()。所以这段代码在 PHP 中有效(使用 composer):

require_once "vendor/autoload.php";
$client = new Google_Client();
$client->setApplicationName(GOOGLE_APP_NAME);
$client->setClientId(GOOGLE_CLIENT_ID);
$client->setClientSecret(GOOGLE_CLIENT_SECRET);
$client->revokeToken($access_token);

最佳答案

尝试

$client->revokeToken(); 

$client->revokeToken($accesstoken);

通过挖掘 Google-api-php-Client 找到的信息

关于php - 在 PHP 中撤销 Google 访问 token ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31515231/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com