使用带有 OAuth 的 Gmail API 阅读所有邮件

发布于 2024-12-16 02:46:25 字数 199 浏览 0 评论 0原文

是否有任何方法可以使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

苏辞 2024-12-23 02:46:25

2014 年 6 月 25 日,Google 发布了新的 Gmail API,可用于轻松收集消息,来自 Gmail 帐户的话题、标签等。服务受 OAuth 2 保护。他们为 Python.NETJava 以及为从事 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.

孤者何惧 2024-12-23 02:46:25

编辑:检索电子邮件计数的 IMAP 示例。显示我所有邮件的计数。似乎是这样工作的。

<?php

$imap = imap_open('{imap.gmail.com:993/imap/ssl}INBOX', $username, $password);
$emails = imap_search($imap, 'ALL');

if($emails) {
        echo count($emails);
}

imap_close($inbox);
?>

edited: IMAP example to retrieve email count. Shows the count of all my mails. Seems to work this way.

<?php

$imap = imap_open('{imap.gmail.com:993/imap/ssl}INBOX', $username, $password);
$emails = imap_search($imap, 'ALL');

if($emails) {
        echo count($emails);
}

imap_close($inbox);
?>
客…行舟 2024-12-23 02:46:25

有示例代码。根据您的需要更改代码..
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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文