使用GMail API,是否可以将邮件插入INBOX?

时间:2019-05-07 09:08:21

标签: gmail-api

使用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的最佳方法是什么?导入?

1 个答案:

答案 0 :(得分:1)

您可以根据documentation设置请求正文:

Request Body: {
   "raw": "string" // required property
   "labelIds": "["INBOX"]" // add this optional property
   "threadId": "string"
}

这是Type of Message labels的完整列表。