I am using ZendGData library for ZF2.
I tried to get account`s data, but there is no data about profiles.
$email = $this->config['email'];
$password = $this->config['password'];
$service = \ZendGData\Analytics::AUTH_SERVICE_NAME;
$client = \ZendGData\ClientLogin::getHttpClient($email, $password, $service);
$analytics = new \ZendGData\Analytics($client);
print_r($analytics->getAccountFeed());
How can I get list of profiles (or profile ids) for my account?