我在获得OAuth2令牌后向Google Contacts API提出以下请求。
$.ajax({
url: 'https://www.google.com/m8/feeds/contacts/XXXXXXXXX@gmail.com/full?access_token=' + authData.authorizationCode + '&alt=json',
dataType: "jsonp",
success:function(data) {
console.log((data));
}
});
这会产生以下获取HTTP请求:
https://www.google.com/m8/feeds/contacts/XXXXXXXXX@gmail.com/full?access_token=4/95N2f8xA1XXXXXXXXXXXXXXQC3BtuuMbk.Aug-7c4GLLMZXmXvfARQvtgU5IVtmgI&alt=json&callback=jQuery111XXXXX1426XXX03&_=1431142848004
但是,Google用状态代码回复:401授权
fyi我使用的是授权代码,而不是访问令牌来请求联系方式。因此,为什么我会遇到错误
此处的图表说明了OAuth2流:https://developers.google.com/indentity/protocols/oauth2webserver
这是查看您的代码实际上应该做的事情的绝佳资源:https://developers.google.com/oautplayground/
这是使用Googles oauth2进行API的一个全面示例:http://www.9bitstudios.com/2013/05/using-oauth-2-0-for-google-apis/
下面的代码获取电子邮件列表
$.ajax({
url: 'https://www.google.com/m8/feeds/contacts/default/full?alt=json',
dataType: "jsonp",
data: {'access_token': authData.authorizationToken.access_token},
success:function(data) {
var entryOfEmails = data.feed.entry;
for (var i = 0; i < data.feed.entry.length; i++) {
console.log(entryOfEmails[i].gd$email[0].address);
}
}
});