Gmail API:如何简单地对用户进行身份验证并获取他们的邮件列表?
Gmail API: How to simply authenticate a User and get a list of their messages?
我正在尝试构建一个简单的 python 脚本来访问 gmail 的 API 并将我收件箱中的某些电子邮件信息组织到一个 csv 文件中。
我在下面的文档中看到访问消息是使用用户(在本例中是我的)电子邮件地址完成的。
我 运行 很难访问 API。我收到以下错误:
"Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project."
我希望构建一个轻量级脚本而不是 Web 应用程序。有谁知道我是否可以在脚本中验证我自己的电子邮件地址?
PS:我想我可以使用 selenium 自动登录,但我想知道是否有办法使用 gmail 的 API.
您需要了解,您尝试访问的数据是私人用户数据。这是您的用户拥有的数据,这意味着您的应用程序需要得到用户“您”的“授权”才能访问他们的数据。
我们使用称为 Oauth2 的方法来执行此操作,在这种情况下,它将允许您的应用程序请求同意以访问用户电子邮件。
为了使用 Oauth2,您必须首先在 Google Developer console 上注册您的应用程序并设置一些东西,这将识别您的应用程序 Google。
所有这些都在 gmail 的 Python quick-start 中进行了解释。完成该工作后,您应该能够更改代码以使用 message.list 而不是 labels.list.
from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/gmail.readonly']
def main():
"""Shows basic usage of the Gmail API.
Lists the user's Gmail labels.
"""
creds = None
# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'credentials.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('gmail', 'v1', credentials=creds)
# Call the Gmail API
results = service.users().labels().list(userId='me').execute()
labels = results.get('labels', [])
if not labels:
print('No labels found.')
else:
print('Labels:')
for label in labels:
print(label['name'])
if __name__ == '__main__':
main()
我正在尝试构建一个简单的 python 脚本来访问 gmail 的 API 并将我收件箱中的某些电子邮件信息组织到一个 csv 文件中。
我在下面的文档中看到访问消息是使用用户(在本例中是我的)电子邮件地址完成的。
我 运行 很难访问 API。我收到以下错误:
"Request is missing required authentication credential. Expected OAuth 2 access token, login cookie or other valid authentication credential. See https://developers.google.com/identity/sign-in/web/devconsole-project."
我希望构建一个轻量级脚本而不是 Web 应用程序。有谁知道我是否可以在脚本中验证我自己的电子邮件地址?
PS:我想我可以使用 selenium 自动登录,但我想知道是否有办法使用 gmail 的 API.
您需要了解,您尝试访问的数据是私人用户数据。这是您的用户拥有的数据,这意味着您的应用程序需要得到用户“您”的“授权”才能访问他们的数据。
我们使用称为 Oauth2 的方法来执行此操作,在这种情况下,它将允许您的应用程序请求同意以访问用户电子邮件。
为了使用 Oauth2,您必须首先在 Google Developer console 上注册您的应用程序并设置一些东西,这将识别您的应用程序 Google。
所有这些都在 gmail 的 Python quick-start 中进行了解释。完成该工作后,您应该能够更改代码以使用 message.list 而不是 labels.list.
from __future__ import print_function
import pickle
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
# If modifying these scopes, delete the file token.pickle.
SCOPES = ['https://www.googleapis.com/auth/gmail.readonly']
def main():
"""Shows basic usage of the Gmail API.
Lists the user's Gmail labels.
"""
creds = None
# The file token.pickle stores the user's access and refresh tokens, and is
# created automatically when the authorization flow completes for the first
# time.
if os.path.exists('token.pickle'):
with open('token.pickle', 'rb') as token:
creds = pickle.load(token)
# If there are no (valid) credentials available, let the user log in.
if not creds or not creds.valid:
if creds and creds.expired and creds.refresh_token:
creds.refresh(Request())
else:
flow = InstalledAppFlow.from_client_secrets_file(
'credentials.json', SCOPES)
creds = flow.run_local_server(port=0)
# Save the credentials for the next run
with open('token.pickle', 'wb') as token:
pickle.dump(creds, token)
service = build('gmail', 'v1', credentials=creds)
# Call the Gmail API
results = service.users().labels().list(userId='me').execute()
labels = results.get('labels', [])
if not labels:
print('No labels found.')
else:
print('Labels:')
for label in labels:
print(label['name'])
if __name__ == '__main__':
main()