所以我对 ASP.NET MVC 和 Windows Live Connect API 还是很陌生。基本上我正在尝试将实时登录集成到我的网站中。当用户登录时,Live 请求他们授予我的应用某些信息的权限,将用户发送到我的应用设置中指定的重定向 uri,并附加一个查询字符串。在这里,如果用户是第一次登录网站,我希望他们的基本信息存储在我的服务器上(名字、姓氏、电子邮件)。我已经能够获得他们的名字和姓氏,但很难找出如何检索他们的主要电子邮件地址。我将解释我到目前为止所做的事情。
我找不到将 Live Connect 集成到 MVC 应用程序的最佳方式,所以我做了最好的猜测。我在重定向 uri 中指定了一个控制器操作,该操作采用查询字符串“代码”来构造一个 HTTP Post。
HttpRequest req = System.Web.HttpContext.Current.Request;
string myAuthCode = req.QueryString["code"];
string myAppId = ConfigurationManager.AppSettings.Get("wll_appid");
string mySecret = ConfigurationManager.AppSettings.Get("wll_secret");
string postData = "client_id=" + myAppId + "&redirect_uri=http%3A%2F%2Fmscontestplatformtest.com%2FContestPlatform%2FUser%2FSignIn&client_secret=" + mySecret + "&code=" + myAuthCode + "&grant_type=authorization_code";
byte[] byteArray = Encoding.UTF8.GetBytes(postData);
WebRequest request = WebRequest.Create("https://oauth.live.com/token");
request.ContentType = "application/x-www-form-urlencoded";
request.ContentLength = byteArray.Length;
request.Method = "POST";
获取 JSON 格式的字符串响应并提取 access_token。然后我使用这个访问令牌来构造一个 HTTP GET 调用,如下所示。
request = WebRequest.Create("https://apis.live.net/v5.0/me?access_token=" + r.access_token);
response = request.GetResponse();
reader = new StreamReader(response.GetResponseStream());
string userInfo = reader.ReadToEnd();
上面的 GET 调用为我提供了这个 JSON 字符串:
{
"id": "02b4b930697bbea1",
"name": "Daniel Hines",
"first_name": "Daniel",
"last_name": "Hines",
"link": "http://profile.live.com/cid-02b4b930697bbea1/",
"gender": "male",
"locale": "en_US",
"updated_time": "2011-10-14T21:40:38+0000"
}
这是所有公共信息,很棒,除了他们的主要电子邮件地址,我几乎拥有我需要的一切。我需要什么样的 GET 调用来检索电子邮件?
另外,我这样做对吗?