如何使用Gmail API将邮件标记为已读?
我有邮件主题
Thread thread = service.users().threads().get(userId, message.getThreadId()).execute();
但它没有方法 markRead ,如gmail API网站所说的那样。
最佳答案
使用threads.modify()或messages.modify()(取决于您要执行的操作的范围)和“UNREAD”的removeLabelId。
https://developers.google.com/gmail/api/v1/reference/users/threads/modify