DotNetOpenAuth和Hotmail登录

时间:2012-06-13 09:11:14

标签: c# asp.net dotnetopenauth

如何使用DotNetOpenAuth检索Hotmail的登录电子邮件ID

我从示例中尝试了此代码,它提供了名称而不是电子邮件ID

IAuthorizationState authorization = client1.ProcessUserAuthorization(null);
    if (authorization == null)
    {
        // Kick off authorization request
        client1.RequestUserAuthorization(new[] { WindowsLiveClient.Scopes.Basic, "wl.emails" }, new Uri("http://localhost/SignIn.aspx")); // this scope isn't even required just to log in
    }
    else
    {
        var request = WebRequest.Create("https://apis.live.net/v5.0/me?access_token=" + Uri.EscapeDataString(authorization.AccessToken));
        using (var response = request.GetResponse())
        {
            using (var responseStream = response.GetResponseStream())
            {
                var graph = WindowsLiveGraph.Deserialize(responseStream);
                //this.nameLabel.Text = HttpUtility.HtmlEncode(graph.Name);
            }
        }
    }

1 个答案:

答案 0 :(得分:1)

您需要在Scope班级

中添加其他项目
/// <summary>
/// Well-known scopes defined by the Windows Live service.
/// </summary>
/// <remarks>
/// This sample includes just a few scopes.  For a complete list of scopes please refer to:
/// http://msdn.microsoft.com/en-us/library/hh243646.aspx
/// </remarks>
public static class Scopes
{
    /// <summary>
    /// The ability of an app to read and update a user's info at any time. Without this scope, an app can access the user's info only while the user is signed in to Live Connect and is using your app.
    /// </summary>
    public const string OfflineAccess = "wl.offline_access";

    /// <summary>
    /// Single sign-in behavior. With single sign-in, users who are already signed in to Live Connect are also signed in to your website.
    /// </summary>
    public const string SignIn = "wl.signin";

    /// <summary>
    /// Read access to a user's basic profile info. Also enables read access to a user's list of contacts.
    /// </summary>
    public const string Basic = "wl.basic";

    /// <summary>
    /// Read access to a user's personal, preferred, and business email addresses.
    /// </summary>
    public const string Email = "wl.emails";
}

然后您可以使用以下代码传递正确的范围 - 正如您可以从示例中看到的那样,您可以传入两个或更多范围。您可以找到所提供范围的详细信息here

var windowsiveClient = WindowsLiveClient.Instance();

var authorization = windowsiveClient.ProcessUserAuthorization();
if (authorization == null)
{
    // Kick off authorization request
    windowsiveClient.RequestUserAuthorization(scope: new[] { WindowsLiveClient.Scopes.Email, WindowsLiveClient.Scopes.Basic });

    // retuning null will force the page to redirect to Windows Live and as we have not specified a callback if authorized will
    // return back to the calling URL - in this instance the 'AttemptSignInForWindowLiveOpenId' controller action.
    return null; // 
}

WindowsLiveGraph windowsLiveModel;

var windowsLiveRequest = WebRequest.Create(string.Format("https://apis.live.net/v5.0/me?access_token={0}", Uri.EscapeDataString(authorization.AccessToken)));
using (var response = windowsLiveRequest.GetResponse())
{
    using (var responseStream = response.GetResponseStream())
    {
        windowsLiveModel = WindowsLiveGraph.Deserialize(responseStream);
    }
}