我不明白如何正确观看 Gmail 推送通知(而且我对网络编码一无所知)。
Google 提供此教程页面:https://developers.google.com/gmail/api/guides/push
到目前为止我做了什么:
{'historyId': '714707', 'expiration': '1618824687477'}
到目前为止一切正常,但我的知识仅限于此。在我看来,我必须在 watch 方法上实现某种无限 while 循环,以检查
historyId
的更改。但如果是这样,为什么 stop()
方法上会有 watch()
方法,以及为什么监视结果上会有 expiration
字段?
我应该从那里做什么?
这是我迄今为止的实现:
from __future__ import print_function
import os.path
from googleapiclient.discovery import build
from google_auth_oauthlib.flow import InstalledAppFlow
from google.auth.transport.requests import Request
from google.oauth2.credentials import Credentials
SCOPES = ['https://mail.google.com/']
MY_TOPIC_NAME = 'my/toppic/name'
creds = None
if os.path.exists('token.json'):
creds = Credentials.from_authorized_user_file('token.json', SCOPES)
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('./my_creds.json', SCOPES)
creds = flow.run_local_server(port=0)
with open('token.json', 'w') as token:
token.write(creds.to_json())
gmail = build('gmail', 'v1', credentials=creds)
request = {'labelIds': ['INBOX'],'topicName': MY_TOPIC_NAME}
gmail.users().watch(userId='me', body=request).execute()
historyId
反映了您邮箱在某个时刻(例如,当您设置观看请求时)的状态
historyId
对应时刻之后发生的邮箱更新的通知