如何通过Google Plus API向人们发送电子邮件?

时间:2015-05-08 00:34:05

标签: gmail google-plus hangout

根据 Google Plus ,您可以通过电子邮件发送圈子中的Google Plus用户:refer this

  • 如果您拥有自己的用户ID,如何使用Google Plus API(或Gmail API)向圈内用户发送电子邮件?
  • 如果你不能这样做,你如何通过环聊向他们发送消息?

1 个答案:

答案 0 :(得分:6)

您应该遵循官方Gmail API参考指南here

来自文档:

  

使用Gmail API发送电子邮件有两种方法:

     
      
  • 您可以使用messages.send方法直接发送。

  •   
  • 您可以使用drafts.send方法从草稿中发送它。

  •   
     

电子邮件发送为   base64url编码message resource raw属性中的字符串。发送电子邮件的高级工作流程是:

     

以一种方便的方式创建电子邮件内容并将其编码为   base64url字符串。创建一个新的消息资源并设置其原始   刚刚创建的base64url字符串的属性。致电messages.send,   或者,如果发送草稿,drafts.send发送消息。

您要通过API发送电子邮件需要提供的论据如下:

Args:
    - service: Authorized Gmail API service instance.
    - user_id: User's email address. The special value "me"
               can be used to indicate the authenticated user.
    - message: Message to be sent.