IMAP GMAIL获取文件夹列表问题
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
"*"
和尾随\r\n
之间不能有空格。You cannot have a space between the
"*"
and the trailing\r\n
.