<legend id='2bCHN'><style id='2bCHN'><dir id='2bCHN'><q id='2bCHN'></q></dir></style></legend><tfoot id='2bCHN'></tfoot>
      <i id='2bCHN'><tr id='2bCHN'><dt id='2bCHN'><q id='2bCHN'><span id='2bCHN'><b id='2bCHN'><form id='2bCHN'><ins id='2bCHN'></ins><ul id='2bCHN'></ul><sub id='2bCHN'></sub></form><legend id='2bCHN'></legend><bdo id='2bCHN'><pre id='2bCHN'><center id='2bCHN'></center></pre></bdo></b><th id='2bCHN'></th></span></q></dt></tr></i><div id='2bCHN'><tfoot id='2bCHN'></tfoot><dl id='2bCHN'><fieldset id='2bCHN'></fieldset></dl></div>
        <bdo id='2bCHN'></bdo><ul id='2bCHN'></ul>

      <small id='2bCHN'></small><noframes id='2bCHN'>

      1. 我无法使用 Python 在 Gmail 中搜索已发送的电子邮件

        时间:2023-10-20

            <tbody id='LdJJS'></tbody>
            <legend id='LdJJS'><style id='LdJJS'><dir id='LdJJS'><q id='LdJJS'></q></dir></style></legend>

            <tfoot id='LdJJS'></tfoot>

            <small id='LdJJS'></small><noframes id='LdJJS'>

          • <i id='LdJJS'><tr id='LdJJS'><dt id='LdJJS'><q id='LdJJS'><span id='LdJJS'><b id='LdJJS'><form id='LdJJS'><ins id='LdJJS'></ins><ul id='LdJJS'></ul><sub id='LdJJS'></sub></form><legend id='LdJJS'></legend><bdo id='LdJJS'><pre id='LdJJS'><center id='LdJJS'></center></pre></bdo></b><th id='LdJJS'></th></span></q></dt></tr></i><div id='LdJJS'><tfoot id='LdJJS'></tfoot><dl id='LdJJS'><fieldset id='LdJJS'></fieldset></dl></div>

              • <bdo id='LdJJS'></bdo><ul id='LdJJS'></ul>
                • 本文介绍了我无法使用 Python 在 Gmail 中搜索已发送的电子邮件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着跟版网的小编来一起学习吧!

                  问题描述

                  我正在尝试在已发送消息中搜索消息(实际上我都关心),但我只收到传入消息.暂时我有

                  I am trying to search for messages in the Sent (actually i care for both) but I only get incoming messages. For the time being i have

                  imap_conn.select()
                  str_after = after.strftime('%d-%b-%Y')
                  typ, msg_ids = imap_conn.search('UTF-8','SINCE',str_after)
                  

                  这给出了相同的结果

                  imap_conn.select('INBOX')
                  

                  当我用 ALL 或 SENT 替换 INBOX 时,我得到:命令 SEARCH 在 AUTH 状态下非法,仅在 SELECTED 状态下允许

                  When I replace INBOX with ALL or SENT I get: command SEARCH illegal in state AUTH, only allowed in states SELECTED

                  推荐答案

                  伙计,错误信息太误导人了.真正的意思是您尝试选择无效的文件夹名称,因此搜索操作失败.

                  Man, the error message is so misleading. What it's really saying is that you have tried to select an invalid folder name hence the search operation fails.

                  要验证/检查当前有效的文件夹/标签,请执行以下操作:

                  To verify/check the current valid folders/labels do something like:

                  使用 ImapClient

                  from imapclient import IMAPClient
                  ## Connect, login and select the INBOX
                  imap_conn = IMAPClient('imap.gmail.com', use_uid=True, ssl=ssl)
                  imap_conn.login(USERNAME, PASSWORD)
                  
                  print(imap_conn.list_folders())
                  

                  使用 imaplib

                  import imaplib
                  mail = imaplib.IMAP4_SSL('imap.gmail.com')
                  mail.login('myusername@gmail.com', 'mypassword')
                  print(mail.list())
                  

                  在我看到它所期望的文件夹名称后,一切都很好.

                  After I could see what folder names it was expecting, all was well.

                  这篇关于我无法使用 Python 在 Gmail 中搜索已发送的电子邮件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!

                  上一篇:无法从收件箱以外的任何文件夹中检索 gmail 邮件(Python3 问题) 下一篇:Python 新手,GMail SMTP 错误

                  相关文章

                • <i id='sjhxP'><tr id='sjhxP'><dt id='sjhxP'><q id='sjhxP'><span id='sjhxP'><b id='sjhxP'><form id='sjhxP'><ins id='sjhxP'></ins><ul id='sjhxP'></ul><sub id='sjhxP'></sub></form><legend id='sjhxP'></legend><bdo id='sjhxP'><pre id='sjhxP'><center id='sjhxP'></center></pre></bdo></b><th id='sjhxP'></th></span></q></dt></tr></i><div id='sjhxP'><tfoot id='sjhxP'></tfoot><dl id='sjhxP'><fieldset id='sjhxP'></fieldset></dl></div>

                    <small id='sjhxP'></small><noframes id='sjhxP'>

                      <bdo id='sjhxP'></bdo><ul id='sjhxP'></ul>
                      <legend id='sjhxP'><style id='sjhxP'><dir id='sjhxP'><q id='sjhxP'></q></dir></style></legend>
                      <tfoot id='sjhxP'></tfoot>