我正在尝试使用 PHP 脚本连接到 AdSense API。我开始使用谷歌的本教程:https ://developers.google.com/api-client-library/php/start/get_started#build-the-client-object
但是,我没有设法连接。这是我尝试过的:
$client = new Google_Client();
$client->setApplicationName("AppName");
$client->setDeveloperKey(API_Key);
$client->setAuthConfigFile('../AdSense/google-api-php-client/client_secret.json');
$service = new Google_Service_AdSenseTest($client);
$results = $service->testReportsGenerate();
foreach($results as $item)
{
echo $item;
}
我遇到了一些问题,主要问题是代码无法识别“Google_Service_AdSenseTest”类 - 即使代码建议了它。所以我真正的问题是:如果我想从 AdSense 中提取数据,我应该使用什么服务?以及如何设置所需的参数(意思是 - 要获取哪些维度和指标)?
谢谢你。