android - Can I open my email thread in Gmail App If I have id or threadId? -
i using gmail apis in android app , able id , threadid.so there way can populate gmail using these ids.
once have messageid
representing message want, can use users.messages: get-operation email. either request manually
get https://www.googleapis.com/gmail/v1/users/me/messages/<message_id>
or of library:
message message = service.users().messages().get('me', messageid).execute();
if want mails in thread, it easy also.
look @ code examples , explore api in links provided.
Comments
Post a Comment