我想使用google contacts api v3来获取帐户的所有联系人但是当我使用jquery ajax请求时,每次请求都会发生此错误:
jQuery.ajax({
url: "https://www.google.com/m8/feeds/contacts/default/full",
headers: {
'Authorization': "Bearer dff55.Cj_CA27T4Fsdfsdfsdfsdfds",
'Content-Type': 'application/json'
},
method: 'GET',
dataType: 'jsonp',
jsonp: false,
success: function (data) {
console.log('succes: ' + data);
},
error: function (data) {
console.log('error');
console.log(data);
}
});
我使用此文档:https://developers.google.com/google-apps/contacts/v3/
但我认为https://www.google.com/m8/feeds/contacts/default/full
有问题,因为在任何请求结果都是一回事! readyState: 4, status: 404, statusText: "error"
!
答案 0 :(得分:0)
搜索更多内容并向其他人询问我的问题后,添加了alt=json
并将其添加到了url并禁用jsonp: false
和cache: true
,因为请求需要jsonp。
工作代码是这样的:
jQuery.ajax({
url: "https://www.google.com/m8/feeds/contacts/default/full?alt=json&access_token=" + hashdic["access_token"] + "&max-results=10&v=3.0",
headers: {
'Authorization': "Bearer XXXXX",
'Content-Type': 'application/json'
},
method: 'GET',
dataType: 'jsonp',
//jsonp: false,
//cache: true,
success: function (data) {
console.log('succes');
console.log(data);
},
error: function (data) {
console.log('error');
console.log(data);
}
});
参考:https://labs.magnet.me/nerds/2015/05/11/importing-google-contacts-with-javascript.html