When following the code sample and asking for final List<GmailMessage> messages = client.getUnreadMessages(); I'm getting only the latest 20 unread messages. There are more in my account and I need to have them. What's the way to achieve that?
When following the code sample and asking for
final List messages = client.getUnreadMessages();
I'm getting only the latest 20 unread messages. There are more in my account and I need to have them. What's the way to achieve that?