使用imaplib和oauth与Gmail连接

使用imaplib和oauth与Gmail连接,第1张

使用imaplib和oauth与Gmail连接

这是一个使用

oauth2
模块通过oauth进行身份验证的示例摘自自述文件:

import oauth2 as oauthimport oauth2.clients.imap as imaplib# Set up your Consumer and Token as per usual. Just like any other# three-legged OAuth request.consumer = oauth.Consumer('your_consumer_key', 'your_consumer_secret')token = oauth.Token('your_users_3_legged_token',     'your_users_3_legged_token_secret')# Setup the URL according to Google's XOAUTH implementation. Be sure# to replace the email here with the appropriate email address that# you wish to access.url = "https://mail.google.com/mail/b/[email protected]/imap/"conn = imaplib.IMAP4_SSL('imap.googlemail.com')conn.debug = 4# This is the only thing in the API for impaplib.IMAP4_SSL that has # changed. You now authenticate with the URL, consumer, and token.conn.authenticate(url, consumer, token)# once authenticated everything from the impalib.IMAP4_SSL class will # work as per usual without any modification to your pre.conn.select('INBOX')print conn.list()

比使用干净一点

xoauth



欢迎分享,转载请注明来源:内存溢出

原文地址: https://www.outofmemory.cn/zaji/5662211.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存