无法找出我的 require_once 调用 YouTube API 有什么问题

Cannot find out what's wrong with my require_once call to YouTube API

我正在尝试使用 google API 和其他 API 一样长,但似乎没有办法让它工作。

我收到错误消息

Fatal error: Class 'Google_Service' not found in /home/msc/www/wp-content/plugins/wp-posts/lib/Google/Service/YouTube.php on line 32

整个网站在 wordpress 4,1,1 下

提前致谢。

答案很简单

我加了

require_once 'Google/autoload.php';

基于此主题:

您需要设置指向 /Google 文件夹所在位置的包含路径

set_include_path('C:/path/to');