其他分享
首页 > 其他分享> > 如何使用Gmail API“插入”一个“完整”格式的邮件?

如何使用Gmail API“插入”一个“完整”格式的邮件?

作者:互联网

我已经成功克隆了一个’原始’格式化的消息,使用get with format =’raw’并重新插入它就像这样:

params = {'userId':'me", 'id': msg_id, 'format':'raw'}
mesg = service.users().messages().get(**params).execute()

body = {'raw': mesg['raw']}
service.users().messages().insert(userId='me', body=**body).execute()

但我热衷于使用json格式做同样的事情,或者通过format =’full’返回.像这样的东西:

params = {'userId':'me", 'id': msg_id, 'format':'full'}
mesg = service.users().messages().get(**params).execute()

body = mesg
service.users().messages().insert(userId='me', body=**body).execute()

有关mesg [1]的格式,请参见下文.
执行上述操作会给出错误:

HttpError: <HttpError 400 when requesting 
  https://www.googleapis.com/gmail/v1/users/me/messages?alt=json 
  returned "
  'raw' RFC822 payload message string or uploading message via /upload/* 
   URL required
">

所以问题是:

如何通过“完整”json格式插入消息?

格式是’完整’而不是’原始’所以我应该使用上传网址?怎么样?
我们是否继续在原始或身体中以某种方式继续使用json有效载荷?
我们可以将它转换为原始格式然后像以前一样吗?
我应该尝试找出如何使用这种格式的上传?
我应该放弃并使用原始格式吗?
我会听到蟋蟀回答这个问题吗?
这么多的问题.

The messages get documentation is here
The messages insert documentation is here

[1]完整格式get返回此类事物.这就是我希望以某种方式插入的内容.

{u'historyId': u'5226', u'id': u'148af993efc00bce',
 u'snippet': u'Hi Joe Get the official Gmail app The best features of Gmail are only available on your phone and',
 u'sizeEstimate': 4809, u'threadId': u'148af993efc00bce', u'labelIds': [u'INBOX'],
 u'payload': {u'mimeType': u'multipart/alternative', u'headers': [
      {u'name': u'MIME-Version', u'value': u'1.0'},
      {u'name': u'x-no-auto-attachment', u'value': u'1'},
      {u'name':
           {u'historyId': u'5226',
            u'id': u'148af993efc00bce',
            u'snippet': u'Hi Joe Get the official Gmail app The best features of Gmail are only available on your phone and',
            u'sizeEstimate': 4809,
            u'threadId': u'148af993efc00bce',
            u'labelIds': [u'INBOX'], u'payload': {
               u'mimeType': u'multipart/alternative',
               u'headers': [{u'name': u'MIME-Version',
                             u'value': u'1.0'}, {
                                u'name': u'x-no-auto-attachment',
                                u'value': u'1'},
                            {u'name': u'Received',
                             u'value': u'by 10.31.41.213; Thu, 25 Sep 2014 18:35:28 -0700 (PDT)'},
                            {u'name': u'Date',
                             u'value': u'Thu, 25 Sep 2014 18:35:28 -0700'},
                            {u'name': u'Message-ID',
                             u'value': u'<CAJvL7e8jz9WYNUjHgnmYcyFgySXxjLiH1zjMxOfopURZmAy4iA@mail.gmail.com>'},
                            {u'name': u'Subject',
                             u'value': u'The best of Gmail, wherever you are'},
                            {u'name': u'From',
                             u'value': u'Gmail Team <mail-noreply@google.com>'},
                            {u'name': u'To',
                             u'value': u'Joe Test <test@gmail.com>'},
                            {u'name': u'Content-Type',
                             u'value': u'multipart/alternative; boundary=bcaec547c84f9cba4a0503edee6b'}],
               u'parts': [{u'mimeType': u'text/plain',
                           u'headers': [
                               {u'name': u'Content-Type',
                                u'value': u'text/plain; charset=UTF-8'},
                               {
                                   u'name': u'Content-Transfer-Encoding',
                                   u'value': u'quoted-printable'}],
                           u'body': {
                               u'data': u'IFRoZSBiZXN0IG9mIEdtYWlsLCB3aGVyZ...

解决方法:

您无法插入完整格式的消息.如果你使用/ upload URL,那么你需要一个uploadType字符串,你应该有一个内容类型的消息/ rfc822.如果您没有使用/上传,那么您只需发布以下内容:

{
  'message': 
  {
     'raw': base64url("From: me\r\nTo: someguy\r\nSubject: here it is\r\n\r\nbody after blank line.")
  }
}

您可以使用附件,但之后您可能需要一些mime电子邮件库来帮助您生成在原始字段中获得base64url编码的电子邮件消息字符串.

标签:python,gmail-api
来源: https://codeday.me/bug/20190624/1276892.html