Gmail Atom Feed不会返回任何内容

时间:2015-02-23 03:49:32

标签: javascript email xmlhttprequest gmail gmail-api


我想使用Gmail atom feed来获取XML中的<fullcount>值。我尝试过各种各样的东西,看着谷歌,但没有一个答案真的有效。

到目前为止我的代码:

<script>

var xmlhttp;
if(window.XMLHttpRequest)
    {// code for IE7+, Firefox, Chrome, Opera, Safari
    xmlhttp=new XMLHttpRequest();
    }
else
    {// and then there's IE6 and IE5.
    xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }

xmlhttp.onreadystatechange=function()
    {
    if(xmlhttp.readyState==4 && xmlhttp.status==200)
        {
        alert(xmlhttp.responseXML.getElementsByTagName("fullcount") + " Unread Emails");
        }
    }
xmlhttp.open("GET", "https://mail.google.com/mail/u/0/feed/atom", true);
xmlhttp.send();

</script>


我目前正在使用Firefox v 35.0.1。对不起,javascript不是我的强项。谢谢你的帮助!

0 个答案:

没有答案