HTML PHP JavaScript 任何检查 Gmail 未读邮件计数的方法
所有这些浏览器插件、通知程序等如何检查您的 Gmail 未读邮件计数?
我正在尝试编写一个 Safari 扩展(它恰好是在 javascript 中,但我认为这并不重要),但我不知道如何解析 Gmail Atom feed (https://mail.google.com/mail/feed/atom) 获取未读计数。
谢谢,
How do all these browser plugins, notifiers, etc. check your gmail unread count?
I'm trying to write a Safari Extension (which happens to be in javascript but I don't think it matters) and I can't figure out how to parse the Gmail atom feed (https://mail.google.com/mail/feed/atom) to get the unread count.
Thanks,
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
检查谷歌API。
http://code.google.com/intl/cs/apis/ajax/< /a>
即 http://code.google.com/intl/cs/apis /ajaxfeeds/
Check Google API.
http://code.google.com/intl/cs/apis/ajax/
Namely http://code.google.com/intl/cs/apis/ajaxfeeds/
在 Safari 扩展中,您应该能够执行跨域
XMLHttpRequest< /code>
并使用
responseXML
属性访问 DOM。但是,您需要配置扩展程序才能访问 Google 的服务器。请参阅此问题。From within a Safari extension, you should be able to do cross-domain
XMLHttpRequest
and use theresponseXML
property to access the DOM. However, you need to configure the extension to be able to access Google's servers. See this question.