Thanks,
For future reference the trouble was because I needed to add the
serviceTypes to my ServicedAccountSelector,
APEX
AccountSelector = new
GoogleAdwordsServicedAccMcmV2011.ServicedAccountSelector();
AccountSelector.serviceTypes = new String[]{'UI_AND_API',
'UNKNOWN'};
AccountSelector.submanagersOnly = false;
the code on the link doesn't work the same way when translated to APEX
in
salesforce.com
PHP
// Create selector.
$selector = new ServicedAccountSelector();
// To get the links paging must be disabled.
$selector->enablePaging = false;
Maybe because the library does something when creating a new
ServicedAccountSelector() I'm not doing.