这个问题与以下内容完全相同: > Gmail API Watch not filtering by Label 1个
我尝试使用Google Pub / Sub引用official documentation将Gmail收件箱事件作为我的应用程序的推送通知.虽然我将labelIds声明为[‘INBox’],但Gmail API会发送所有事件的通知(即INBox,SENT,IMPORTANT&等等).我的python代码如下所示,
credentials = get_credentials()
http = credentials.authorize(httplib2.Http()
service = discovery.build('gmail','v1',http=http)
request = {
'labelIds': ['INBox'],'topicName': 'projects/myproject/topics/getNotification'
}
service.users().watch(userId='me',body=request).execute()
最佳答案
上次我调查它时,它没有按照记录的方式工作.
原文链接:https://www.f2er.com/python/438637.html我的经验是,我们很遗憾地收到了所有活动的通知……
你可以在这里看到我们的讨论
Gmail API Watch not filtering by Label
我知道谷歌正在努力修复它……