I want to know if anybody have a list of available dimensions to use with the webmaster tools API.
In the official documentation I can't find availables dimensions.
Here is my code :
$webmastersService = new Google_Service_Webmasters($client);
$searchanalytics = $webmastersService->searchanalytics;
$request = new Google_Service_Webmasters_SearchAnalyticsQueryRequest;
$request->setStartDate('2013-01-01');
$request->setEndDate('2015-01-01');
$request->setDimensions(array("[query]"));
$qsearch = $searchanalytics->query("http://www.example.com", $request);
$rows = $qsearch->getRows();
I want to know what datas is possible to to get from webmaster tools api with changes on this line
$request->setDimensions(array("[query]"));
My idea is to get the maximum type of datas from the google webmasters tools, like query, query details, pages, crawl stats, external links, backlinks, ....