使用带有 OAuth 的 Gmail API 阅读所有邮件
是否有任何方法可以使用 Gmail API 和 OAuth 来读取所有邮件(即已读和未读)。
以下链接仅返回新邮件:
https://gmail.google.com/gmail/feed/atom
因此我希望检索所有电子邮件。
请帮我。
Is there any method to read all mails (i.e. both read and unread) using Gmail API with OAuth.
The following link returns only new mails:
https://gmail.google.com/gmail/feed/atom
So I want all Emails to be retrieved.
Please help me.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
2014 年 6 月 25 日,Google 发布了新的 Gmail API,可用于轻松收集消息,来自 Gmail 帐户的话题、标签等。服务受 OAuth 2 保护。他们为 Python、.NET 和 Java 以及为从事 REST 实现。
我建议使用他们的 API 而不是 IMAP - 因为 Gmail 拥有并支持许多并非设计用于在 IMAP 上运行的功能。搜索、标记等功能...
您还可以查看他们的 YouTube 视频,了解更好的介绍。
On June 25, 2014 Google released new Gmail API that can be used to easily gather messages, threads, labels and more from Gmail accounts. Service is OAuth 2 protected. They provide nice client libraries for Python, .NET and Java and wonderful documentation for those doing RESTful implementation.
I suggest using their API instead of IMAP - because Gmail has and supports many features that were not designed to run over IMAP. Features like search, tagging, etc...
You can also check their YouTube video for a nicer introduction.
编辑:检索电子邮件计数的 IMAP 示例。显示我所有邮件的计数。似乎是这样工作的。
edited: IMAP example to retrieve email count. Shows the count of all my mails. Seems to work this way.
有示例代码。根据您的需要更改代码..
https://developers.google.com/google-apps/gmail/xoauth2_libraries
There is sample code. Alter the code as per your needs..
https://developers.google.com/google-apps/gmail/xoauth2_libraries