我正在尝试通过JS Gmail API发送邮件的世界。我已根据this正确授权(可以列出标签)。
我正在使用以下代码,在浏览器中运行:
const message =
"From: my.email@gmail.com\r\n" +
"To: my.email@gmail.com\r\n" +
"Subject: As basic as it gets\r\n\r\n" +
"This is the plain text body of the message. Note the blank line between the header information and the body of the message.";
// The body needs to be base64url encoded.
const encodedMessage = btoa(message)
const reallyEncodedMessage = encodedMessage.replace(/\+/g, '-').replace(/\//g, '_').replace(/=+$/, '')
gapi.client.gmail.users.messages.send({
userId: 'me',
requestBody: {
// same response with any of these
raw: reallyEncodedMessage
// raw: encodedMessage
// raw: message
}
}).then(function () { console.log("done!")});
这会给出HTTP 400响应:
{
"error": {
"errors": [
{
"domain": "global",
"reason": "invalidArgument",
"message": "'raw' RFC822 payload message string or uploading message via /upload/* URL required"
}
],
"code": 400,
"message": "'raw' RFC822 payload message string or uploading message via /upload/* URL required"
}
}
这是使用https://apis.google.com/js/api.js
上的JS API。 RFC822示例取自MSDN和elsewhere。据我所知,Web安全的base64编码RFC822消息是此API的标准。 Firefox和Chrome中都存在相同的错误。
我要去哪里错了?
答案 0 :(得分:1)
我认为原始数据是正确的。那修改呢?
requestBody: {
// same response with any of these
raw: reallyEncodedMessage
// raw: encodedMessage
// raw: message
}
resource: { // Modified
// same response with any of these
raw: reallyEncodedMessage
// raw: encodedMessage
// raw: message
}
如果这不起作用,请告诉我。我想考虑其他解决方案。