How to receive push notifications from my Gmail account?

前端 未结 3 784
长情又很酷
长情又很酷 2021-02-20 11:37

I\'d like to write an application which monitors a mailbox (ideally a Gmail mailbox). In brief, my question is how do I listen to incoming emails? I could always keep pulling em

相关标签:
3条回答
  • 2021-02-20 12:12

    The most universal "API" for monitoring a Gmail or Google Apps inbox is the IMAP protocol. There's some information about this here: Gmail IMAP OAuth for desktop clients

    For Google Apps inboxes (not general consumer Gmail accounts), you can also use the Gmail Inbox Feed, which provides an AtomPub XML feed of unread messages in a Google Apps inbox: http://code.google.com/apis/gmail/docs/inbox_feed.html

    0 讨论(0)
  • 2021-02-20 12:12

    If you just want to talk to Gmail, they have a REST API you can use and it supports push notifications (e.g. webhooks): https://developers.google.com/gmail/api/guides/push

    But again this is a Gmail-specific API, which may fit you requirements or not. If you are fine just being specific to Gmail it is likely easier and better to work with from a web/mobile type environment than something like IMAP.

    0 讨论(0)
  • 2021-02-20 12:22

    The "API" to GMail is IMAP.

    In IMAP the IDLE feature is used to tell the server to notify the client when there are changes to the mailbox.

    IDLE is defined in RFC 2177 IDLE is an optional IMAP feature so this may or may not work on other IMAP servers.

    0 讨论(0)
提交回复
热议问题