我正在通过ajax加载用户收件箱信息,如下所示:
$.ajax({
url:'https://api.dropbox.com/1/account/info',
dataType:'json',
headers: {
'Authorization':'Bearer '+token
},
method: 'GET',
success:function(data){
//call was successful, do stuff
},
error:function(data){
//nope, error, token has expired/ invalid etc
console.log(data)
}
});
除了IE 9或更低版本之外,这在我测试的每个浏览器/版本上都能正常工作。 IE 9记录了“没有传输”的错误。每次拨打dropbox api都会发生这种情况,例如https://api.dropbox.com/1/metadata/auto'得到相同的错误
这是什么意思,我该如何解决?访问令牌绝对有效且未过期