IMAP GMAIL获取文件夹列表问题

发布于 2024-10-18 04:28:47 字数 275 浏览 1 评论 0原文

我正在使用 IMAP 并尝试获取我的 Gmail 帐户中的文件夹列表。

我可以使用 Yahoo Mail,但不能使用 Gmail。

这是我的代码:

byte[] commandBytes = System.Text.Encoding.ASCII.GetBytes((("$ XLIST \"\" \"*\" \r\n")).ToCharArray());

我也尝试过 LIST ,但它也不起作用。我做错了什么?

I am working on IMAP and trying to get the list of folders in my Gmail account.

I am able to get it working with Yahoo Mail, but not Gmail.

Here's my code:

byte[] commandBytes = System.Text.Encoding.ASCII.GetBytes((("$ XLIST \"\" \"*\" \r\n")).ToCharArray());

I had tried LIST as well, but it's also not working. What am I doing wrong?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

魂归处 2024-10-25 04:28:47

"*" 和尾随 \r\n 之间不能有空格。

You cannot have a space between the "*" and the trailing \r\n.

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