我正在尝试在laravel项目中使用google-api-php-client。
我使用“ composer require google / apiclient”命令安装了该软件包,并在composer.json中添加了以下行。
{
"autoload": {
"classmap": [
"vendor/google/apiclient/src/Google"
],
}
}
并在“ composer dump-autoload”中也运行此命令
但是,每当我尝试创建新的Google Client对象时,它都会一直返回致命错误:找不到Google_Client。
有人可以帮我解决这个问题吗。谢谢。
我已经尝试过以下方法。
(1)使用Google_Client;
(2)$ client = new Google_Client;
(3)$ client = new \ Google_Client;
答案 0 :(得分:-1)
您应该在课程开始时尝试使用Google_Client服务的地方添加use Google_Client;
。
我已经运行composer require google/apiclient
并在其中一个控制器中添加了use Google_Client
,然后实例化了类$googleClient = new Google_Client();
并起作用。