I have a google realtime API web application and I use the "realtime-client-utils.js" library to authenticate that is accessible at GitHub: https://github.com/googledrive/realtime-utils.
When I call RealtimeUtils.authorize(onAuthComplete, usePopup)
I get a response object for the onAuthComplete callback method. This response object contains information about the authorization process:
But I need the email address of the google user that just authenticated himself. Can anybody tell me how I can get the email address?
I tried to use this tutorial: https://developers.google.com/+/web/people/#retrieve-an-authenticated-users-email-address

You can try to use the People: get method to get a person's profile. Also, this method returns a person resource in the response body.
Here is the response that you can get by doing this.
For more information, check this SO question if it can help you.