Google_Service_Oauth2 未定义

问题描述 投票:0回答:1

我正在尝试使用 google api 以便能够使用 google 登录。然而,当 我尝试创建一个新的 Google_Service_Oauth2 对象,它显示 '未定义类型'Google_Service_Oauth2',有其他选择吗? Google_Service_Oauth2 类是否已替换为另一个类?

api google-api google-oauth
1个回答
0
投票

我也遇到这个问题了

更改此代码

$client = new Google_Client();
$google_oauth = new Google_Service_Oauth2($client);

编写这段代码

$client = new Google\Client();
$google_oauth = new Google\Service\Oauth2($client);

Google_Service_OAuth2 是 PHP 中的“未定义类型”

© www.soinside.com 2019 - 2024. All rights reserved.