我试图在我的控制器中包含youtube API。我已经在这个路径中解压缩了谷歌 youtube api
。 appcomponentsGoogle
现在我应该怎么做才能包含所有谷歌YouTubeapi文件。当我创建Google_Client对象时它说找不到Google_Client类。我知道文件不包括,但当我也尝试通过以下方式包含它时
require(Yii::$app->basePath.'/components/Google/Client.php)
再次出现同样的错误,类找不到对此的任何想法?
我找到了使用它的方法,在composer.json
中添加了存储库 URL。
"repositories": [
{
"url": "https://github.com/google/google-api-php-client.git",
"type": "git"
}
],
之后只是运行了composer update
命令,作曲家在我的供应商文件夹中复制了该存储库。所以我现在可以使用use GoogleClient
命名空间来使用它。
您可能
忘记使用其命名空间,如下所示:
use pathGoogle_Client;