Hello,
I’m prototyping an app on top of the Gmail API. As the docs state, both the message.list and threads.list methods only return a few metadata fields for returned messages/threads, and it’s required to call {messages,threads}.get on individual message/thread IDs to get, for example, the subject of the thread.
In my prototyping it seems to make it more difficult to build a responsive app, because, let’s say you want to show the user the 100 most recent messages. I call threads.list, and then have to make 100 API calls for each thread to get the subject, number of messages in each thread, etc. Am I understanding the API correctly, or is there another way I am not aware of? Thanks a lot in advance.
Neal