I\'m new to php and the google api, I\'m trying to get the email address when the user sing in with Google+, I get all the User info using $plus->people->get(\"me\") but whe
$me['emails'] is an Array, not a Hash. So add an [0] for choosing the first Mailadress:
$correo = ($me['emails'][0]['value']);
Now it should work fine...