Gmail API-获取附件



是否有可能get ash all 特定消息的附件?我只发现get attactmentbyid

首先,您从特定的标签中获取消息列表

            var re = service.Users.Messages.List("me");
            re.LabelIds = "Label_2";
            re.Q = "is:unread";
            var res = re.Execute();

然后您通过ID

获得消息
               foreach (var email in res.Messages)
                {
                   GetAttachments(service, "me", email.Id, credPath);
                 }

相关内容

  • 没有找到相关文章

最新更新