我知道网址是:
https://mail.google.com/mail/feed/atom
似乎 gmail API 仅提供 XML 格式的 gmail 提要。我该如何解决这种情况?这段代码似乎不起作用。
$.ajax({
url: 'https://mail.google.com/mail/feed/atom',
dataType: 'xml',
type: 'GET',
success: function(res) {
var headline = res.responseXML;
console.log(headline);
},
error: function() {
console.log('failed');
}
});
谢谢。