gmail API 中的监视请求不起作用

Watch request in gmail API doesn't work

我正在尝试使用 google APIs 中提到的 python 发出监视请求,但它不起作用。

request = {
  'labelIds': ['INBOX'],
  'topicName': 'projects/myproject/topics/mytopic'
}
gmail.users().watch(userId='me', body=request).execute()

我找不到使用 gmail.users() 函数的库或包。如何使用访问令牌发出观看请求?

在 gmail python 客户端(由 google 提供)中执行。在主要功能下

request = {
        'labelIds': ['INBOX'],
        'topicName': 'projects/myprojects/topics/getTopic'
    }
    print(service.users().watch(userId='me', body=request).execute())
const { google } = require('googleapis') 
const gmail = google.gmail({ version: 'v1' }) 

gmail 只是客户端库中的一个对象。上面是node js库。在 python 客户端库中查找答案。

我不喜欢 api 上的许多 google 文档,它们假定您知道加载了什么或在一些晦涩的地方看到过示例。