GMail apiclient:从收件箱标签中排除促销和社交网络邮件
GMail apiclient : exclude promotion and social network mail from inbox label
我正在尝试使用 apiclient
和 oauth2client
库获取我的最后一封邮件(从这里快速启动:https://developers.google.com/gmail/api/quickstart/quickstart-python)。
我目前能够检索 所有 我的最后一封邮件,包括促销邮件和社交网络邮件(我不在乎)。
脚本如下(如果您发现一些错误或更快的方法,请告诉我):
# ... credentials mechanism identical to the quickstart one
gmail_service = build('gmail', 'v1', http=http
# Get the last mails :
last_mails = gmail_service.users().messages().list(userId="me", labelIds=["INBOX"]).execute()
for mailIds in last_mails["messages"]:
all_infos = gmail_service.users().messages().get(userId="me", id=mailIds["id"]).get(userId="me", id=mailIds["id"]).execute()
abstract = all_infos["snippet"]
# Changing json structure
headers = dict([(x["name"], x["value"]) for x in all_infos["payload"]["headers"]])
dest = headers["Delivered-To"]
source = headers["From"]
title = headers["Subject"]
print "Mail : %s\nFrom : %s\nTo : %s\nAbst : %s\n-------" % (
title, source, dest, abstract
)
所以我的 objective 是从列表中删除 促销 和 社交网络 邮件。有什么办法吗?
在向 messages.list 发送请求以及 labelIds = "INBOX" 时,包括 q=category:primary。我试过 API explorer 并且只能从收件箱中检索电子邮件。
回应:
200 好
- Show headers -
{
"messages": [
{
"id": "14d0078c4b6e7b95",
"threadId": "14d0078c4b6e7b95"
},
{
"id": "14d0057a75894568",
"threadId": "14d0057a75894568"
},
{
"id": "14d004211587e8c0",
"threadId": "14d004211587e8c0"
},
{
"id": "14cfed9aef9e1217",
"threadId": "14cfed9aef9e1217"
},
我正在尝试使用 apiclient
和 oauth2client
库获取我的最后一封邮件(从这里快速启动:https://developers.google.com/gmail/api/quickstart/quickstart-python)。
我目前能够检索 所有 我的最后一封邮件,包括促销邮件和社交网络邮件(我不在乎)。
脚本如下(如果您发现一些错误或更快的方法,请告诉我):
# ... credentials mechanism identical to the quickstart one
gmail_service = build('gmail', 'v1', http=http
# Get the last mails :
last_mails = gmail_service.users().messages().list(userId="me", labelIds=["INBOX"]).execute()
for mailIds in last_mails["messages"]:
all_infos = gmail_service.users().messages().get(userId="me", id=mailIds["id"]).get(userId="me", id=mailIds["id"]).execute()
abstract = all_infos["snippet"]
# Changing json structure
headers = dict([(x["name"], x["value"]) for x in all_infos["payload"]["headers"]])
dest = headers["Delivered-To"]
source = headers["From"]
title = headers["Subject"]
print "Mail : %s\nFrom : %s\nTo : %s\nAbst : %s\n-------" % (
title, source, dest, abstract
)
所以我的 objective 是从列表中删除 促销 和 社交网络 邮件。有什么办法吗?
在向 messages.list 发送请求以及 labelIds = "INBOX" 时,包括 q=category:primary。我试过 API explorer 并且只能从收件箱中检索电子邮件。
回应: 200 好
- Show headers -
{
"messages": [
{
"id": "14d0078c4b6e7b95",
"threadId": "14d0078c4b6e7b95"
},
{
"id": "14d0057a75894568",
"threadId": "14d0057a75894568"
},
{
"id": "14d004211587e8c0",
"threadId": "14d004211587e8c0"
},
{
"id": "14cfed9aef9e1217",
"threadId": "14cfed9aef9e1217"
},