Gmail API .NET: Get full message
问题 How do I get the full message and not just the metadata using gmail api? I have a service account and I am able to retrieve a message but only in the metadata, raw and minimal formats. How do I retrieve the full message in the full format? The following code works fine var request = service.Users.Messages.Get(userId, messageId); request.Format = UsersResource.MessagesResource.GetRequest.FormatEnum.Metadata; Message message = request.Execute(); However, when I omit the format (hence I use the