使用GMail API,可以通过https://developers.google.com/gmail/api/v1/reference/users/messages/insert将消息list = []
for tweet in public_tweets:
if "GARDEN TEA" in tweet.text.upper():
list.append(tweet)
insert
送入收件箱
我遇到的问题是使用insert
时,收件箱中没有出现邮件,用户必须转到“所有邮件”才能看到它们。
将insert
消息放入 INBOX的最佳方法是什么?导入?
答案 0 :(得分:1)
您可以根据documentation设置请求正文:
Request Body: {
"raw": "string" // required property
"labelIds": "["INBOX"]" // add this optional property
"threadId": "string"
}
这是Type of Message labels的完整列表。