I don't know why the Authenticated Referrals approach is not working for you, but here's how you can ask for the email address and get it in 2 other ways (you'll need to deactivate the authenticated referrals though):
(1) Serveri-Side Authentication - When facebook load your canvas page it's doing that by POSTing to your canvas url, providing the *signed_request* parameter. With that you can check if the user is authenticated or not (if he is, you get the access token and other things about the user such as his fb user id).
If the user is not authenticated you send him to the following url:
https://www.facebook.com/dialog/oauth?client_id=YOUR_APP_ID&redirect_url=YOUR_REDIRECT_URI&scope=email,publish_stream,etc
When the user gets back you should have an authenticated signed request.
(2) Client-Side Authentication - You use the javascript sdk to authenticate the user in your canvas page.
Once you have an access token you can get the email address by issuing a request to:
https://graph.facebook.com/me?fields=email
Or from the client side you can use:
FB.api("me?fields=email", function(response) {
console.log(response);
});
Edit
You should read the javascript sdk documentation? especially the FB.login part.
It shows an example of how to use it and asking for more permissions (using the the scope parameter)