1

我对 OAuth Arena 和 Google ApI 非常陌生,但我在这里想要实现的目标非常简单。

用户点击 Google Connect 按钮和我的网络服务应该能够从 Google 服务器获取所有用户个人资料信息:

我已经编写了获取 AccessToken 的代码(我还没有测试它)但是假设它工作正常,现在我应该如何要求 Google API 给我用户配置文件?我确实在 GoogleConsumer 类中看到了名为 Get Contacts 的静态函数,但我没有看到任何获取 profiledata 的选项。可能有什么我想念的吗?

这是我获取accessToken的代码:

IConsumerTokenManager tokenManager = 
                              new LocalTokenManager(consumerKey,consumerSecret);
var googleConsumer = 
               new WebConsumer(GoogleConsumer.ServiceDescription, tokenManager);
var tokenResult = googleConsumer.ProcessUserAuthorization();
return tokenResult.AccessToken;

现在,我如何从中获取用户配置文件?

4

2 回答 2

2

获得 Access_Token(访问类型离线;并设置范围/权限以便您获取用户信息)后,您可以尝试以下操作(未经测试,如果发生任何错误,请告诉我):

string userInfo = "";

HttpWebRequest req = (HttpWebRequest)WebRequest.Create(action);
        HttpWebResponse resp = (HttpWebResponse)req.GetResponse();
        StreamReader sr = new StreamReader(resp.GetResponseStream());
        userInfo = "https://www.googleapis.com/oauth2/v1/userinfo?access_token=" + "YOUR_ACCESSTOKEN";
        sr.Close();

            JObject jsonResp = JObject.Parse(userInfo);
            string info="";
            info += "<h3>" + jsonResp.Root["name"] + "</h3>";
            info += "<img src='" + jsonResp.Root["picture"] + "' width='120'/><br/>";
            info += "<br/>ID : " + jsonResp.Root["id"];
            info += "<br/>Email : " + jsonResp.Root["email"];
            info += "<br/>Verified_email : " + jsonResp.Root["verified_email"];
            info += "<br/>Given_name : " + jsonResp.Root["given_name"];
            info += "<br/>Family_name : " + jsonResp.Root["family_name"];
            info += "<br/>Link : " + jsonResp.Root["link"];
            info += "<br/>Gender : " + jsonResp.Root["gender"];

Response.Write(info);

流程:使用访问令牌请求 google userinfo url,获取响应并显示信息。

于 2012-04-19T12:55:41.367 回答
1

让我知道您对使用他们的 GET 方法访问个人资料的谷歌信息有何看法,在此处描述https://developers.google.com/+/api/latest/people/get?这是我的 C# 示例。

string urlGoogle = "https://www.googleapis.com/plus/v1/people/me";
HttpWebRequest client = HttpWebRequest.Create(urlGoogle) as HttpWebRequest;
client.Method = "GET";
client.Headers.Add("Authorization", "Bearer " + accessToken);
            
using (HttpWebResponse response = (HttpWebResponse)client.GetResponse())
{
     using (Stream dataStream = response.GetResponseStream())
     {
           using (StreamReader reader = new StreamReader(dataStream))
           {
                 if (response.StatusCode == HttpStatusCode.OK)
                 {
                     var json = new JavaScriptSerializer();
                     var data = json.Deserialize<IDictionary<string, object>>(reader.ReadToEnd());
    //....... here in data you have all json fields for the profile

于 2014-12-13T14:44:15.220 回答