我正在尝试使用 google api 以便能够使用 google 登录。然而,当 我尝试创建一个新的 Google_Service_Oauth2 对象,它显示 '未定义类型'Google_Service_Oauth2',有其他选择吗? Google_Service_Oauth2 类是否已替换为另一个类?
我也遇到这个问题了
更改此代码
$client = new Google_Client();
$google_oauth = new Google_Service_Oauth2($client);
编写这段代码
$client = new Google\Client();
$google_oauth = new Google\Service\Oauth2($client);