要求是仅提取具有附件的邮件。通过使用 has:attachment https://developers.google.com/gmail/api/guides/filtering https://support.google.com/mail/answer/7190?hl=en.I进行查询,可以提取所有带有附件的邮件,但在此它同时返回内联附件消息和普通附件消息。我不要内联附件邮件。如何跳过gmail api响应中的嵌入式附件。
是否可以在查询时指定跳过内联附件消息??其他在响应中如何识别要跳过的内联附件。
这里content-dispositon表示内联,我不想提取这些附件邮件,我该如何避免。
{
"name": "Content-Description",
"value": "image002.jpg"
},
{
"name": "Content-Disposition",
"value": "inline; filename=\"image002.jpg\"; size=3533; creation-date=\"Fri, 29 Jun 2018 08:18:23 GMT\"; modification-date=\"Fri, 29 Jun 2018 08:18:23 GMT\""
}