sunday evening, without changing a line of code, my calls sot CampaignService->get suddenly became incredibly slow
i have just 6 campaigns, that werent changed either.
every request takes between 130 and 132 seconds, no exceptions.
this is the code (copied from googles sample code):
$campaignService = $adWordsServices->get($session, CampaignService::class);
$selector = new Selector();
$selector->setFields(['Id', 'Name']);
$selector->setOrdering([new OrderBy('Name', SortOrder::DESCENDING)]);
$selector->setPaging(new Paging(0, self::PAGE_LIMIT));
$page = $campaignService->get($selector);
there is nothing wrong with my server, requests to other web services return in less than 100 ms
i tried other accounts, some without any campaigns, same 130 second wait
the response is valid, on my main account i get 6 names and id's, probably around 1K of XML
i isolated the code, im doing nothing else, just the code above (with the standard loop for paging
(but, it stalls for 130 seconds in the call to "get" so the paging code is irrelevant.
was adwords updated, this week-end ? that would be unusual.
im using version 36.0.0 (i think, thats the highest number in the chanelog.md file)
or is it v201802 ?