我目前正在使用Gmail API。查找Gmail郵件的ID
https://developers.google.com/gmail/api/v1/reference/users/messages/get
有誰知道如何找到的電子郵件ID?
謝謝!
我目前正在使用Gmail API。查找Gmail郵件的ID
https://developers.google.com/gmail/api/v1/reference/users/messages/get
有誰知道如何找到的電子郵件ID?
謝謝!
你需要做的是在這裏先說明一個列表(它有搜索語義Q參數,如果你不感興趣的所有消息):https://developers.google.com/gmail/api/v1/reference/users/messages/list
這將返回看起來像這樣的信息列表: https://developers.google.com/gmail/api/v1/reference/users/messages#resource
消息id是id字段(「ID」:字符串)
而只是爲了快速測試的東西,如果你在Gmail的web應用程序打開特定的電子郵件,它會顯示消息ID在URL – pratsJ