Gmail登录API(使用python中的用户名和密码)

时间:2018-08-10 08:23:24

标签: python django google-api gsuite

我有usernamepassword的gmail帐户,我需要 API 才能从我的python代码自动登录gmail。

我尝试使用smtplib

import smtplib
server = smtplib.SMTP_SSL('smtp.gmail.com', 465)
server.starttls() 
username="test@gmail.com"
password="test"
server.login(username, password)
server.quit()

我遇到smtplib.SMTPAuthenticationError错误

1 个答案:

答案 0 :(得分:0)

转到Google account security settings并登录到您的帐户。

您需要向下滚动并打开“允许安全程度较低的应用程序”选项。