how to get information like email-id of currently logged in user using Federated authentication in a win azure app

1.9k Views Asked by At

A windows azure application accept Federated authentication where user can log in using any of the gmail , facebook and live id . Once user is logged in , how can one extract information like getting user name and email id specifically . ?

1

There are 1 best solutions below

4
On

The email address is presented as a claim from the identity provider.

If you're using MVC (for example) an easy way to read the email address is to add some properties to your controller like this:

public ClaimsPrincipal ClaimsPrincipal
{
    get
    {
        return this.User as ClaimsPrincipal;
    }
}

public ClaimsIdentity ClaimsIdentity
{
    get
    {
        return this.ClaimsPrincipal.Identity as ClaimsIdentity;
    }
}

public string UserEmailAddress
{
    get
    {
        foreach (var claim in this.ClaimsIdentity.Claims)
        {
            if (claim.ClaimType == @"http://schemas.xmlsoap.org/ws/2005/05/identity/claims/emailaddress")
            {
                return claim.Value;
            }
        }
        return null;
    }
}

However, Live ID will not give you the email address, or the user's name.