我成功地克隆了一个原始的'使用get
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()
重新插入格式化的消息:
get
但我热衷于使用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()
返回的json格式做同样的事情。像这样:
mesg
请参阅下文,了解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
">
[1]的格式。
执行上述操作会给出错误:
insert
所以问题是:
raw
通过“完整”消息发送消息。 json格式?格式是满的&#39;不是&#39; raw&#39;我应该使用上传网址吗?怎么样?
我们是否继续在upload
或身体中以某种方式继续使用json有效负载?
我们可以将其转换为原始格式然后像以前一样吗?
我应该尝试使用这种格式来研究如何使用get
吗?
我应该放弃并使用原始格式吗?
我是否会听到蟋蟀回答这个问题?
这么多问题。
The messages get
documentation is here
The messages insert
documentation is here
[1]完整格式insert
会返回此类内容。而这正是我希望{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...
以某种方式。
{{1}}
答案 0 :(得分:4)
您无法插入完整格式的消息。如果你使用/ 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编码的电子邮件字符串。