1

我在这里一直在努力获取google联系人,我得到了用户的个人信息,但无法获取用户的联系人。出现以下错误:401(需要授权)

https://www.google.com/m8/feeds/contacts/xyz@gmail.com/full?oauthtoken=[object%20Object]&callback=jQuery162xxxxxxxxxx_13xxxxxxxxxx2&_=13xxxxxx。

$.ajax({
                    url: "https://www.google.com/m8/feeds/contacts/default/full",
                    dataType: "jsonp",
                    headers: "GData-Version: 3.0",
                    data:{accessToken: authResult },
                    success: function (data) {
                        console.log("json"+JSON.stringify(data));
                    }
});
4

3 回答 3

1

在您的第一个代码块(带有 URL)中,您指定查询参数 name oauthtoken。在第二个代码块中,您指定参数值accessToken.

这个参数值实际上应该是access_token. 见这里: https ://developers.google.com/accounts/docs/OAuth2UserAgent#callinganapi

于 2012-08-07T18:08:51.660 回答
1

我回答了这个:

// OAuth configurations   
    var config = {
      'client_id': 'xxxxxx.apps.googleusercontent.com',
      'scope': 'https://www.google.com/m8/feeds/contacts/default/full'          
    };

gapi.auth.authorize(config, function(data) {
      // login complete - now get token
      var token = gapi.auth.getToken();
      token.alt = 'json';
      // retrieve contacts
      jQuery.ajax({
        url: 'https://www.google.com/m8/feeds/contacts/default/full/?max-results=999999',
        dataType: 'jsonp',
        data: token,
        success: function(data) { successGmail(data); }
      });
    });

那里:修改 JSONP 请求的 HTTP 标头

于 2014-05-27T09:27:41.013 回答
0

您可以尝试在标头中将您的令牌写为“授权:承载”+ authResult,所以我认为您的代码在此示例中应如下所示:

$.ajax({
       url: "https://www.google.com/m8/feeds/contacts/default/full",
       type: "GET",
       dataType: "jsonp",
       headers: {
                   "Authorization": "Bearer " + authResult,
                   "GData-Version": "3.0"
                },
       success: function (data) {
            console.log("json"+JSON.stringify(data));
       }
});

JQuery Docs 对 ajax headers 参数进行了以下说明:

与请求一起发送的附加标头键/值对的映射[...]

这就是为什么我将您的原始字符串更改为地图的原因。类型默认是 GET,所以它是可选的。

希望这可以帮助

于 2012-12-04T18:27:39.567 回答